DIB Engine: Implement Polygon
[wine/hacks.git] / include / ipifcons.h
blobfe99b2ffff00d347fb622989f98450ee1ffef542
1 /* WINE ipifcons.h
2 * Copyright (C) 2003 Juan Lang
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
18 #ifndef WINE_IPIFCONS_H__
19 #define WINE_IPIFCONS_H__
21 #define IF_TYPE_OTHER 1
22 #define IF_TYPE_REGULAR_1822 2
23 #define IF_TYPE_HDH_1822 3
24 #define IF_TYPE_DDN_X25 4
25 #define IF_TYPE_RFC877_X25 5
26 #define IF_TYPE_ETHERNET_CSMACD 6
27 #define IF_TYPE_IS088023_CSMACD 7
28 #define IF_TYPE_ISO88024_TOKENBUS 8
29 #define IF_TYPE_ISO88025_TOKENRING 9
30 #define IF_TYPE_ISO88026_MAN 10
31 #define IF_TYPE_STARLAN 11
32 #define IF_TYPE_PROTEON_10MBIT 12
33 #define IF_TYPE_PROTEON_80MBIT 13
34 #define IF_TYPE_HYPERCHANNEL 14
35 #define IF_TYPE_FDDI 15
36 #define IF_TYPE_LAP_B 16
37 #define IF_TYPE_SDLC 17
38 #define IF_TYPE_DS1 18
39 #define IF_TYPE_E1 19
40 #define IF_TYPE_BASIC_ISDN 20
41 #define IF_TYPE_PRIMARY_ISDN 21
42 #define IF_TYPE_PROP_POINT2POINT_SERIAL 22
43 #define IF_TYPE_PPP 23
44 #define IF_TYPE_SOFTWARE_LOOPBACK 24
45 #define IF_TYPE_EON 25
46 #define IF_TYPE_ETHERNET_3MBIT 26
47 #define IF_TYPE_NSIP 27
48 #define IF_TYPE_SLIP 28
50 #define MIB_IF_TYPE_OTHER 1
51 #define MIB_IF_TYPE_ETHERNET 6
52 #define MIB_IF_TYPE_TOKENRING 9
53 #define MIB_IF_TYPE_FDDI 15
54 #define MIB_IF_TYPE_PPP 23
55 #define MIB_IF_TYPE_LOOPBACK 24
56 #define MIB_IF_TYPE_SLIP 28
58 #define MIB_IF_ADMIN_STATUS_UP 1
59 #define MIB_IF_ADMIN_STATUS_DOWN 2
60 #define MIB_IF_ADMIN_STATUS_TESTING 3
62 #define MIB_IF_OPER_STATUS_NON_OPERATIONAL 0
63 #define MIB_IF_OPER_STATUS_UNREACHABLE 1
64 #define MIB_IF_OPER_STATUS_DISCONNECTED 2
65 #define MIB_IF_OPER_STATUS_CONNECTING 3
66 #define MIB_IF_OPER_STATUS_CONNECTED 4
67 #define MIB_IF_OPER_STATUS_OPERATIONAL 5
69 #endif /* WINE_ROUTING_IPIFCONS_H__ */