ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/gvpe/src/netcompat.h
(Generate patch)

Comparing gvpe/src/netcompat.h (file contents):
Revision 1.1 by pcg, Tue Oct 14 19:12:26 2003 UTC vs.
Revision 1.8 by pcg, Fri Mar 18 01:53:05 2005 UTC

1/* 1/*
2 netcompat.h -- network compatibility header 2 netcompat.h -- network compatibility header
3 Copyright (C) 2003 Marc Lehmann <gvpe@schmorp.de>
3 4
5 This file is part of GVPE.
6
4 This program is free software; you can redistribute it and/or modify 7 GVPE is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by 8 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or 9 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version. 10 (at your option) any later version.
8 11
9 This program is distributed in the hope that it will be useful, 12 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of 13 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details. 15 GNU General Public License for more details.
13 16
14 You should have received a copy of the GNU General Public License 17 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software 18 along with gvpe; if not, write to the Free Software
16 Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 19 Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17*/ 20*/
18 21
19#ifndef VPE_NETCOMPAT_H 22#ifndef GVPE_NETCOMPAT_H
20#define VPE_NETCOMPAT_H 23#define GVPE_NETCOMPAT_H
21 24
22#include "config.h" 25#include <sys/types.h>
23
24#include <sys/socket.h> 26#include <sys/socket.h>
25#ifdef HAVE_NETINET_IN_H 27#ifdef HAVE_NETINET_IN_H
26# include <netinet/in.h> 28# include <netinet/in.h>
27#endif 29#endif
30#ifdef HAVE_ARPA_INET_H
28#include <arpa/inet.h> 31# include <arpa/inet.h>
32#endif
29#include <net/if.h> 33#include <net/if.h>
30#ifdef HAVE_NETINET_IN_SYSTM_H 34#ifdef HAVE_NETINET_IN_SYSTM_H
31# include <netinet/in_systm.h> 35# include <netinet/in_systm.h>
32#endif 36#endif
33#ifdef HAVE_NETINET_IP_H 37#ifdef HAVE_NETINET_IP_H
34# include <netinet/ip.h> 38# include <netinet/ip.h>
35#endif 39#endif
36 40
37#ifndef IPTOS_LOWCOST 41#ifndef IPTOS_MINCOST
38# define IPTOS_LOWCOST 0x02 42# define IPTOS_MINCOST 0x02
39#endif 43#endif
40#ifndef IPTOS_RELIABILITY 44#ifndef IPTOS_RELIABILITY
41# define IPTOS_RELIABILITY 0x04 45# define IPTOS_RELIABILITY 0x04
42#endif 46#endif
43#ifndef IPTOS_THROUGHPUT 47#ifndef IPTOS_THROUGHPUT
55# define SOL_IP IPPROTO_IP 59# define SOL_IP IPPROTO_IP
56#endif 60#endif
57 61
58#ifndef IPPROTO_GRE 62#ifndef IPPROTO_GRE
59# define IPPROTO_GRE 47 63# define IPPROTO_GRE 47
64#endif
65
66#ifndef ICMP_ECHOREPLY
67# define ICMP_ECHOREPLY 0
60#endif 68#endif
61 69
62#ifndef HAVE_SOCKLEN_T 70#ifndef HAVE_SOCKLEN_T
63typedef int socklen_t; 71typedef int socklen_t;
64#endif 72#endif

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines