9128570309d01d7ce8f4e19942f719896dde0183
[libnl.git] / include / linux / if.h
1 /*
2  * INET         An implementation of the TCP/IP protocol suite for the LINUX
3  *              operating system.  INET is implemented using the  BSD Socket
4  *              interface as the means of communication with the user level.
5  *
6  *              Global definitions for the INET interface module.
7  *
8  * Version:     @(#)if.h        1.0.2   04/18/93
9  *
10  * Authors:     Original taken from Berkeley UNIX 4.3, (c) UCB 1982-1988
11  *              Ross Biro
12  *              Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
13  *
14  *              This program is free software; you can redistribute it and/or
15  *              modify it under the terms of the GNU General Public License
16  *              as published by the Free Software Foundation; either version
17  *              2 of the License, or (at your option) any later version.
18  */
19 #ifndef _LINUX_IF_H
20 #define _LINUX_IF_H
21
22 #define IFNAMSIZ        16
23
24 /* Standard interface flags (netdevice->flags). */
25 #define IFF_UP          0x1             /* interface is up              */
26 #define IFF_BROADCAST   0x2             /* broadcast address valid      */
27 #define IFF_DEBUG       0x4             /* turn on debugging            */
28 #define IFF_LOOPBACK    0x8             /* is a loopback net            */
29 #define IFF_POINTOPOINT 0x10            /* interface is has p-p link    */
30 #define IFF_NOTRAILERS  0x20            /* avoid use of trailers        */
31 #define IFF_RUNNING     0x40            /* interface running and carrier ok */
32 #define IFF_NOARP       0x80            /* no ARP protocol              */
33 #define IFF_PROMISC     0x100           /* receive all packets          */
34 #define IFF_ALLMULTI    0x200           /* receive all multicast packets*/
35
36 #define IFF_MASTER      0x400           /* master of a load balancer    */
37 #define IFF_SLAVE       0x800           /* slave of a load balancer     */
38
39 #define IFF_MULTICAST   0x1000          /* Supports multicast           */
40
41 #define IFF_VOLATILE    (IFF_LOOPBACK|IFF_POINTOPOINT|IFF_BROADCAST|IFF_MASTER|IFF_SLAVE|IFF_RUNNING)
42
43 #define IFF_PORTSEL     0x2000          /* can set media type           */
44 #define IFF_AUTOMEDIA   0x4000          /* auto media select active     */
45 #define IFF_DYNAMIC     0x8000          /* dialup device with changing addresses*/
46 #define IFF_LOWER_UP    0x10000         /* driver signals L1 up         */
47 #define IFF_DORMANT     0x20000         /* driver signals dormant       */
48
49 /* Private (from user) interface flags (netdevice->priv_flags). */
50 #define IFF_802_1Q_VLAN 0x1             /* 802.1Q VLAN device.          */
51 #define IFF_EBRIDGE     0x2             /* Ethernet bridging device.    */
52
53 #define IF_GET_IFACE    0x0001          /* for querying only */
54 #define IF_GET_PROTO    0x0002
55
56 /* For definitions see hdlc.h */
57 #define IF_IFACE_V35    0x1000          /* V.35 serial interface        */
58 #define IF_IFACE_V24    0x1001          /* V.24 serial interface        */
59 #define IF_IFACE_X21    0x1002          /* X.21 serial interface        */
60 #define IF_IFACE_T1     0x1003          /* T1 telco serial interface    */
61 #define IF_IFACE_E1     0x1004          /* E1 telco serial interface    */
62 #define IF_IFACE_SYNC_SERIAL 0x1005     /* can't be set by software     */
63 #define IF_IFACE_X21D   0x1006          /* X.21 Dual Clocking (FarSite) */
64
65 /* For definitions see hdlc.h */
66 #define IF_PROTO_HDLC   0x2000          /* raw HDLC protocol            */
67 #define IF_PROTO_PPP    0x2001          /* PPP protocol                 */
68 #define IF_PROTO_CISCO  0x2002          /* Cisco HDLC protocol          */
69 #define IF_PROTO_FR     0x2003          /* Frame Relay protocol         */
70 #define IF_PROTO_FR_ADD_PVC 0x2004      /*    Create FR PVC             */
71 #define IF_PROTO_FR_DEL_PVC 0x2005      /*    Delete FR PVC             */
72 #define IF_PROTO_X25    0x2006          /* X.25                         */
73 #define IF_PROTO_HDLC_ETH 0x2007        /* raw HDLC, Ethernet emulation */
74 #define IF_PROTO_FR_ADD_ETH_PVC 0x2008  /*  Create FR Ethernet-bridged PVC */
75 #define IF_PROTO_FR_DEL_ETH_PVC 0x2009  /*  Delete FR Ethernet-bridged PVC */
76 #define IF_PROTO_FR_PVC 0x200A          /* for reading PVC status       */
77 #define IF_PROTO_FR_ETH_PVC 0x200B
78 #define IF_PROTO_RAW    0x200C          /* RAW Socket                   */
79
80
81 /*
82  *      Device mapping structure. I'd just gone off and designed a 
83  *      beautiful scheme using only loadable modules with arguments
84  *      for driver options and along come the PCMCIA people 8)
85  *
86  *      Ah well. The get() side of this is good for WDSETUP, and it'll
87  *      be handy for debugging things. The set side is fine for now and
88  *      being very small might be worth keeping for clean configuration.
89  */
90
91 struct ifmap 
92 {
93         unsigned long mem_start;
94         unsigned long mem_end;
95         unsigned short base_addr; 
96         unsigned char irq;
97         unsigned char dma;
98         unsigned char port;
99         /* 3 bytes spare */
100 };
101
102 #endif /* _LINUX_IF_H */