File: PConn_bind.3

package info (click to toggle)
coldsync 3.0%2Bpre3-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 3,180 kB
  • ctags: 2,036
  • sloc: ansic: 20,386; perl: 2,302; cpp: 1,640; yacc: 1,102; lex: 802; makefile: 586; sh: 177
file content (55 lines) | stat: -rw-r--r-- 1,291 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
.\" PConn_bind.3
.\" 
.\" Copyright 2001, Andrew Arensburger.
.\" You may distribute this file under the terms of the Artistic
.\" License, as specified in the README file.
.\"
.\" $Id: PConn_bind.3,v 1.2 2001/09/07 10:58:33 arensb Exp $
.\"
.\" This man page uses the 'mdoc' formatting macros. If your 'man' uses
.\" the old 'man' package, you may run into problems.
.\"
.Dd Sep 7, 2001
.Dt PConn_bind 3
.Sh NAME
.Nm PConn_bind
.Nd bind an address to a
.Ft PConnection
.Sh LIBRARY
.Pa libpconn
.Sh SYNOPSIS
.Fd #include <palm.h>
.Fd #include <pconn/pconn.h>
.Ft int
.Fn PConn_bind "PConnection *pconn" "const void *addr" "const int addrlen"
.Sh DESCRIPTION
.Nm
associates an address with
.Fa pconn ,
which must already have been created with
.Fn new_PConnection .
.Pp
In practice, this function is not terribly useful. If
.Fa pconn
was created with
.Dv PCONN_STACK_FULL ,
use
.Bd -literal -offset
        struct slp_addr pcaddr;

        pcaddr.protocol = SLP_PKTTYPE_PAD;
        pcaddr.port = (ubyte) SLP_PORT_DLP;
        PConn_bind(pconn, &pcaddr, sizeof(struct slp_addr));
.Ed
.Pp
In all other cases,
.Fa addr
and
.Fa addrlen
are ignored. However, it is still necessary to call
.Nm
since it may have side effects.
.Sh RETURN VALUE
.Sh SEE ALSO
.Xr libpconn 3 ,
.Xr new_PConnection 3 .