~ubuntu-branches/ubuntu/quantal/flightgear/quantal

« back to all changes in this revision

Viewing changes to src/NetworkOLK/fgd.h

  • Committer: Bazaar Package Importer
  • Author(s): Ove Kaaven
  • Date: 2002-03-27 21:50:15 UTC
  • Revision ID: james.westby@ubuntu.com-20020327215015-0rvi3o8iml0a8s93
Tags: upstream-0.7.9
ImportĀ upstreamĀ versionĀ 0.7.9

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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 */