Warning: Attempt to read property "date" on null in /usr/local/www/websvn.planix.org/blame.php on line 247

Warning: Attempt to read property "msg" on null in /usr/local/www/websvn.planix.org/blame.php on line 247
WebSVN – planix.SVN – Blame – /os/branches/planix-v0/sys/src/cmd/unix/drawterm/kern/devip.h – Rev 2

Subversion Repositories planix.SVN

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 - 1
enum
2
{
3
	S_TCP,
4
	S_UDP
5
};
6
 
7
int		so_socket(int, unsigned char*);
8
void		so_connect(int, unsigned char*, unsigned short);
9
void		so_getsockname(int, unsigned char*, unsigned short*);
10
void		so_bind(int, int, unsigned short, unsigned char*);
11
void		so_listen(int);
12
int		so_send(int, void*, int, int);
13
int		so_recv(int, void*, int, int);
14
int		so_accept(int, unsigned char*, unsigned short*);
15
int		so_getservbyname(char*, char*, char*);
16
int		so_gethostbyname(char*, char**, int);
17
 
18
char*	hostlookup(char*);
19