xref: /plan9/sys/include/ape/Plan9libnet.h (revision 219b2ee8daee37f4aad58d63f21287faa8e4ffdc)
1 #ifndef __LIBNET_H
2 #define __LIBNET_H
3 #ifndef _NET_EXTENSION
4    This header file is not defined in ANSI or POSIX
5 #endif
6 #pragma lib "/$M/lib/ape/libnet.a"
7 
8 #define NETPATHLEN 40
9 
10 extern	int	accept(int, char*);
11 extern	int	announce(char*, char*);
12 extern	int	dial(char*, char*, char*, int*);
13 extern	int	hangup(int);
14 extern	int	listen(char*, char*);
15 extern	char*	netmkaddr(char*, char*, char*);
16 extern	int	reject(int, char*, char *);
17 
18 extern char    dialerrstr[64];
19 
20 #endif /* __LIBNET_H */
21