mirror of
git://anongit.mindrot.org/openssh.git
synced 2025-02-22 16:56:53 +00:00
- deraadt@cvs.openbsd.org 2000/01/26 03:43:20 [rresvport.c bindresvport.c] new bindresvport() semantics that itojun, shin, jean-luc and i have agreed on, which will be happy for the future. bindresvport_sa() for sockaddr *, too. docs later.. - deraadt@cvs.openbsd.org 2000/01/24 02:24:21 [bindresvport.c] in bindresvport(), if sin is non-NULL, example sin->sin_family for the actual family being processed
11 lines
226 B
C
11 lines
226 B
C
#ifndef _BSD_BINDRESVPORT_H
|
|
#define _BSD_BINDRESVPORT_H
|
|
|
|
#include "config.h"
|
|
|
|
#ifndef HAVE_BINDRESVPORT_SA
|
|
int bindresvport_sa(int sd, struct sockaddr *sa);
|
|
#endif /* !HAVE_BINDRESVPORT_SA */
|
|
|
|
#endif /* _BSD_BINDRESVPORT_H */
|