]> git.mxchange.org Git - flightgear.git/blob - src/NetworkOLK/Tools/fgd.h
Code reorganization.
[flightgear.git] / src / NetworkOLK / Tools / 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 int     MSG_PEEK        = 0x02;    /* Peek at incoming messages.  */
14 #define MSG_PEEK        MSG_PEEK
15 #endif
16 #ifndef MSG_WAITALL
17 int     MSG_WAITALL     = 0x100;   /* Wait for a full request.  */
18 #define MSG_WAITALL     MSG_WAITALL
19 #endif