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.2 by pcg, Tue Oct 14 19:38:54 2003 UTC vs.
Revision 1.9 by pcg, Tue Apr 26 00:55:56 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. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 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
28#ifdef HAVE_ARPA_INET_H 30#ifdef HAVE_ARPA_INET_H
34#endif 36#endif
35#ifdef HAVE_NETINET_IP_H 37#ifdef HAVE_NETINET_IP_H
36# include <netinet/ip.h> 38# include <netinet/ip.h>
37#endif 39#endif
38 40
39#ifndef IPTOS_LOWCOST 41#ifndef IPTOS_MINCOST
40# define IPTOS_LOWCOST 0x02 42# define IPTOS_MINCOST 0x02
41#endif 43#endif
42#ifndef IPTOS_RELIABILITY 44#ifndef IPTOS_RELIABILITY
43# define IPTOS_RELIABILITY 0x04 45# define IPTOS_RELIABILITY 0x04
44#endif 46#endif
45#ifndef IPTOS_THROUGHPUT 47#ifndef IPTOS_THROUGHPUT
57# define SOL_IP IPPROTO_IP 59# define SOL_IP IPPROTO_IP
58#endif 60#endif
59 61
60#ifndef IPPROTO_GRE 62#ifndef IPPROTO_GRE
61# define IPPROTO_GRE 47 63# define IPPROTO_GRE 47
64#endif
65
66#ifndef ICMP_ECHOREPLY
67# define ICMP_ECHOREPLY 0
62#endif 68#endif
63 69
64#ifndef HAVE_SOCKLEN_T 70#ifndef HAVE_SOCKLEN_T
65typedef int socklen_t; 71typedef int socklen_t;
66#endif 72#endif

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines