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