]> git.mxchange.org Git - flightgear.git/blob - src/NetworkOLK/fgd.h
David Megginson writes:
[flightgear.git] / src / NetworkOLK / fgd.h
1 #include <sys/socket.h>
2 #include <sys/types.h>
3 #include <netinet/in.h>
4 #include <unistd.h>
5 #include <netdb.h>
6 #include <sys/time.h>
7 #include <fcntl.h>
8 #include <sys/utsname.h>
9
10 /* this seems to be missing for glibc-2.0.x */
11 /* libc5 & glibc-2.1 do have them           */
12 #ifndef MSG_PEEK
13 #define MSG_PEEK        0x02    /* Peek at incoming messages.  */
14 #endif
15 #ifndef MSG_WAITALL
16 #define MSG_WAITALL     0x100   /* Wait for a full request.  */
17 #endif