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.3 by pcg, Thu Oct 16 02:41:21 2003 UTC vs.
Revision 1.7 by pcg, Thu Mar 3 16:54:34 2005 UTC

1/* 1/*
2 netcompat.h -- network compatibility header 2 netcompat.h -- network compatibility header
3 Copyright (C) 2003 Marc Lehmann <pcg@goof.com> 3 Copyright (C) 2003 Marc Lehmann <gvpe@schmorp.de>
4 4
5 This file is part of GVPE.
6
5 This program is free software; you can redistribute it and/or modify 7 GVPE is free software; you can redistribute it and/or modify
6 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
7 the Free Software Foundation; either version 2 of the License, or 9 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version. 10 (at your option) any later version.
9 11
10 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,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of 13 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details. 15 GNU General Public License for more details.
14 16
15 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
16 along with this program; if not, write to the Free Software 18 along with gvpe; if not, write to the Free Software
17 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
18*/ 20*/
19 21
20#ifndef VPE_NETCOMPAT_H 22#ifndef VPE_NETCOMPAT_H
21#define VPE_NETCOMPAT_H 23#define VPE_NETCOMPAT_H
22 24
23#include "config.h" 25#include <sys/types.h>
24
25#include <sys/socket.h> 26#include <sys/socket.h>
26#ifdef HAVE_NETINET_IN_H 27#ifdef HAVE_NETINET_IN_H
27# include <netinet/in.h> 28# include <netinet/in.h>
28#endif 29#endif
29#ifdef HAVE_ARPA_INET_H 30#ifdef HAVE_ARPA_INET_H
35#endif 36#endif
36#ifdef HAVE_NETINET_IP_H 37#ifdef HAVE_NETINET_IP_H
37# include <netinet/ip.h> 38# include <netinet/ip.h>
38#endif 39#endif
39 40
40#ifndef IPTOS_LOWCOST 41#ifndef IPTOS_MINCOST
41# define IPTOS_LOWCOST 0x02 42# define IPTOS_MINCOST 0x02
42#endif 43#endif
43#ifndef IPTOS_RELIABILITY 44#ifndef IPTOS_RELIABILITY
44# define IPTOS_RELIABILITY 0x04 45# define IPTOS_RELIABILITY 0x04
45#endif 46#endif
46#ifndef IPTOS_THROUGHPUT 47#ifndef IPTOS_THROUGHPUT
58# define SOL_IP IPPROTO_IP 59# define SOL_IP IPPROTO_IP
59#endif 60#endif
60 61
61#ifndef IPPROTO_GRE 62#ifndef IPPROTO_GRE
62# define IPPROTO_GRE 47 63# define IPPROTO_GRE 47
64#endif
65
66#ifndef ICMP_ECHOREPLY
67# define ICMP_ECHOREPLY 0
63#endif 68#endif
64 69
65#ifndef HAVE_SOCKLEN_T 70#ifndef HAVE_SOCKLEN_T
66typedef int socklen_t; 71typedef int socklen_t;
67#endif 72#endif

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines