*nix Documentation Project
·  Home
 +   man pages
·  Linux HOWTOs
·  FreeBSD Tips
·  *niX Forums

  man pages->NetBSD man pages -> bindresvport (3)              
Title
Content
Arch
Section
 

BINDRESVPORT(3)

Contents


NAME    [Toc]    [Back]

     bindresvport, bindresvport_sa - bind a socket to a privileged IP port

LIBRARY    [Toc]    [Back]

     Standard C Library (libc, -lc)

SYNOPSIS    [Toc]    [Back]

     #include <sys/types.h>
     #include <rpc/rpc.h>

     int
     bindresvport(int sd, struct sockaddr_in *sin);

     int
     bindresvport_sa(int sd, struct sockaddr *sa);

DESCRIPTION    [Toc]    [Back]

     bindresvport() and bindresvport_sa() are used to bind a socket descriptor
     to a privileged IP port, that is, a port number in the range 0-1023.  The
     routine returns 0 if it is successful, otherwise -1 is returned and errno
     set to reflect the cause of the error.

     If sin is a pointer to a struct sockaddr_in then the appropriate fields
     in the structure should be defined.  Note that sin->sin_family must be
     initialized to the address family of the socket, passed by sd.  If
     sin->sin_port is `0' then an anonymous port (in the range 600-1023) will
     be chosen, and if bind(2) is successful, the sin->sin_port will be
     updated to contain the allocated port.

     If sin is the NULL pointer, an anonymous port will be allocated (as
     above).  However, there is no way for bindresvport() to return the allocated
 port in this case.

     Only root can bind to a privileged port; this call will fail for any
     other users.

     Function prototype of bindresvport() is biased to AF_INET socket.
     bindresvport_sa() acts exactly the same, with more neutral function prototype.
  Note that both functions behave exactly the same, and both support
 AF_INET6 sockets as well as AF_INET sockets.

RETURN VALUES    [Toc]    [Back]

     If the bind is successful, a 0 value is returned.  A return value of -1
     indicates an error, which is further specified in the global errno.

ERRORS    [Toc]    [Back]

     [EPFNOSUPPORT]     If second argument was supplied, and address family
                        did not match between arguments.

     bindresvport() may also fail and set errno for any of the errors specified
 for the calls bind(2), getsockopt(2), or setsockopt(2).

SEE ALSO    [Toc]    [Back]

      
      
     bind(2), getsockopt(2), setsockopt(2), ip(4)

BSD                            November 22, 1987                           BSD
[ Back ]
 Similar pages
Name OS Title
cap_bind IRIX bind a privileged name to a socket
rresvport Tru64 Retrieve a socket with a privileged address
rresvport_af Tru64 Retrieve a socket with a privileged address
bind NetBSD bind a name to a socket
bind Linux bind a name to a socket
bind OpenBSD bind a name to a socket
bind Tru64 Bind a name to a socket
bind IRIX bind a name to a socket
bind IRIX bind a name to a socket
bind HP-UX bind an address to a socket
Copyright © 2004-2005 DeniX Solutions SRL
newsletter delivery service