b8377d8cb4
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1652 a95241bf-73f2-0310-859d-f6bbb57e9c96
15 lines
272 B
C
15 lines
272 B
C
#ifndef _NET_SOCKET_H
|
|
#define _NET_SOCKET_H
|
|
|
|
#include <BeBuild.h>
|
|
#include <netinet/in.h> /* in_addr, sockaddr_in */
|
|
#include <sys/socket.h> /* sockaddr */
|
|
#include <sys/select.h>
|
|
|
|
/*
|
|
* Be extension
|
|
*/
|
|
#define B_UDP_MAX_SIZE (65536 - 1024)
|
|
|
|
#endif /* _NET_SOCKET_H */
|