SLPFREE(3SLP) Service Location Protocol Library Functions SLPFREE(3SLP)
SLPFree - frees memory
cc [ flag... ] file... -lslp [ library... ]
#include <slp.h>
SLPError SLPFree(void *pvMem);
The SLPFree() function frees memory returned from SLPParseSrvURL(),
SLPFindScopes(), SLPEscape(), and SLPUnescape().
pvMem
A pointer to the storage allocated by the SLPParseSrvURL(),
SLPFindScopes(), SLPEscape(), and SLPUnescape() functions.
pvMem is ignored if its value is NULL.
This function or its callback may return any SLP error code. See the
ERRORS section in slp_api(3SLP).
The following example illustrates how to call SLPFree(). It assumes
that SrvURL contains previously allocated memory.
SLPerror err;
err = SLPFree((void*) SrvURL);
SLP_CONF_FILE
When set, use this file for configuration.
SLPEscape(3SLP), SLPFindScopes(3SLP), SLPParseSrvURL(3SLP),
SLPUnescape(3SLP), slp_api(3SLP), slp.conf(5), slpd.reg(5),
attributes(7), slpd(8)
System Administration Guide: Network Services
Guttman, E., Perkins, C., Veizades, J., and Day, M. RFC 2608,
Service Location Protocol, Version 2. The Internet Society. June
1999.
Kempf, J. and Guttman, E. RFC 2614, An API for Service Location. The
Internet Society. June 1999.
January 16, 2003 SLPFREE(3SLP)
NAME
SLPFree - frees memory
SYNOPSIS
cc [ flag... ] file... -lslp [ library... ]
#include <slp.h>
SLPError SLPFree(void *pvMem);
DESCRIPTION
The SLPFree() function frees memory returned from SLPParseSrvURL(),
SLPFindScopes(), SLPEscape(), and SLPUnescape().
PARAMETERS
pvMem
A pointer to the storage allocated by the SLPParseSrvURL(),
SLPFindScopes(), SLPEscape(), and SLPUnescape() functions.
pvMem is ignored if its value is NULL.
ERRORS
This function or its callback may return any SLP error code. See the
ERRORS section in slp_api(3SLP).
EXAMPLES
Example 1: Using SLPFree()
The following example illustrates how to call SLPFree(). It assumes
that SrvURL contains previously allocated memory.
SLPerror err;
err = SLPFree((void*) SrvURL);
ENVIRONMENT VARIABLES
SLP_CONF_FILE
When set, use this file for configuration.
SEE ALSO
SLPEscape(3SLP), SLPFindScopes(3SLP), SLPParseSrvURL(3SLP),
SLPUnescape(3SLP), slp_api(3SLP), slp.conf(5), slpd.reg(5),
attributes(7), slpd(8)
System Administration Guide: Network Services
Guttman, E., Perkins, C., Veizades, J., and Day, M. RFC 2608,
Service Location Protocol, Version 2. The Internet Society. June
1999.
Kempf, J. and Guttman, E. RFC 2614, An API for Service Location. The
Internet Society. June 1999.
January 16, 2003 SLPFREE(3SLP)