1
0
Fork 0
flightgear/src/NetworkOLK/fgd.h

24 lines
499 B
C
Raw Normal View History

#ifndef _MSC_VER
2000-01-12 17:53:10 +00:00
#include <sys/socket.h>
#include <sys/types.h>
#include <netinet/in.h>
#include <unistd.h>
#include <netdb.h>
#include <sys/time.h>
#include <fcntl.h>
#include <sys/utsname.h>
/* this seems to be missing for glibc-2.0.x */
/* libc5 & glibc-2.1 do have them */
#ifndef MSG_PEEK
2000-02-04 22:50:04 +00:00
#define MSG_PEEK 0x02 /* Peek at incoming messages. */
#endif
#ifndef MSG_WAITALL
2000-02-04 22:50:04 +00:00
#define MSG_WAITALL 0x100 /* Wait for a full request. */
#endif
#endif /* !_MSC_VER */