pconn_bind(3)
NAME
PConn_bind - bind an address to a PConnection
LIBRARY
libpconn
SYNOPSIS
#include <palm.h> #include <pconn/pconn.h> int PConn_bind(PConnection *pconn, const void *addr, const int addrlen);
DESCRIPTION
- PConn_bind associates an address with pconn, which must al
- ready have been created with new_PConnection().
- In practice, this function is not terribly useful. If pconn
- was created with PCONN_STACK_FULL, use
struct slp_addr pcaddr;- pcaddr.protocol = SLP_PKTTYPE_PAD;
pcaddr.port = (ubyte) SLP_PORT_DLP;
PConn_bind(pconn, &pcaddr, sizeof(struct slp_addr)); - In all other cases, addr and addrlen are ignored. However,
- it is still necessary to call PConn_bind since it may have side
- effects.
RETURN VALUE SEE ALSO
- libpconn(3), new_PConnection(3).
- BSD Sep 7, 2001