mirror of
https://review.haiku-os.org/haiku
synced 2025-02-01 11:15:59 +01:00
4c7e1fff2f
I'm not sure if we really need this socket.h and netdb.h wrappers git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1599 a95241bf-73f2-0310-859d-f6bbb57e9c96
15 lines
260 B
C
15 lines
260 B
C
#ifndef _NET_SOCKET_H
|
|
#define _NET_SOCKET_H
|
|
|
|
#include <BeBuild.h>
|
|
#include <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 /* _SOCKET_H */
|