70 lines
2.7 KiB
C
70 lines
2.7 KiB
C
/* WINE ipifcons.h
|
|
* Copyright (C) 2003 Juan Lang
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
#ifndef WINE_IPIFCONS_H__
|
|
#define WINE_IPIFCONS_H__
|
|
|
|
#define IF_TYPE_OTHER 1
|
|
#define IF_TYPE_REGULAR_1822 2
|
|
#define IF_TYPE_HDH_1822 3
|
|
#define IF_TYPE_DDN_X25 4
|
|
#define IF_TYPE_RFC877_X25 5
|
|
#define IF_TYPE_ETHERNET_CSMACD 6
|
|
#define IF_TYPE_IS088023_CSMACD 7
|
|
#define IF_TYPE_ISO88024_TOKENBUS 8
|
|
#define IF_TYPE_ISO88025_TOKENRING 9
|
|
#define IF_TYPE_ISO88026_MAN 10
|
|
#define IF_TYPE_STARLAN 11
|
|
#define IF_TYPE_PROTEON_10MBIT 12
|
|
#define IF_TYPE_PROTEON_80MBIT 13
|
|
#define IF_TYPE_HYPERCHANNEL 14
|
|
#define IF_TYPE_FDDI 15
|
|
#define IF_TYPE_LAP_B 16
|
|
#define IF_TYPE_SDLC 17
|
|
#define IF_TYPE_DS1 18
|
|
#define IF_TYPE_E1 19
|
|
#define IF_TYPE_BASIC_ISDN 20
|
|
#define IF_TYPE_PRIMARY_ISDN 21
|
|
#define IF_TYPE_PROP_POINT2POINT_SERIAL 22
|
|
#define IF_TYPE_PPP 23
|
|
#define IF_TYPE_SOFTWARE_LOOPBACK 24
|
|
#define IF_TYPE_EON 25
|
|
#define IF_TYPE_ETHERNET_3MBIT 26
|
|
#define IF_TYPE_NSIP 27
|
|
#define IF_TYPE_SLIP 28
|
|
|
|
#define MIB_IF_TYPE_OTHER 1
|
|
#define MIB_IF_TYPE_ETHERNET 6
|
|
#define MIB_IF_TYPE_TOKENRING 9
|
|
#define MIB_IF_TYPE_FDDI 15
|
|
#define MIB_IF_TYPE_PPP 23
|
|
#define MIB_IF_TYPE_LOOPBACK 24
|
|
#define MIB_IF_TYPE_SLIP 28
|
|
|
|
#define MIB_IF_ADMIN_STATUS_UP 1
|
|
#define MIB_IF_ADMIN_STATUS_DOWN 2
|
|
#define MIB_IF_ADMIN_STATUS_TESTING 3
|
|
|
|
#define MIB_IF_OPER_STATUS_NON_OPERATIONAL 0
|
|
#define MIB_IF_OPER_STATUS_UNREACHABLE 1
|
|
#define MIB_IF_OPER_STATUS_DISCONNECTED 2
|
|
#define MIB_IF_OPER_STATUS_CONNECTING 3
|
|
#define MIB_IF_OPER_STATUS_CONNECTED 4
|
|
#define MIB_IF_OPER_STATUS_OPERATIONAL 5
|
|
|
|
#endif /* WINE_ROUTING_IPIFCONS_H__ */
|