source: svn/trunk/newcon3bcm2_21bu/toolchain/mips-linux-uclibc/include/linux/if.h @ 2

Last change on this file since 2 was 2, checked in by jglee, 11 years ago

first commit

  • Property svn:executable set to *
File size: 6.6 KB
Line 
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#include <sys/socket.h>         /* for "struct sockaddr" et al  */
23#include <linux/types.h>                /* for "__kernel_caddr_t" et al */
24
25#define IFNAMSIZ        16
26#include <linux/hdlc/ioctl.h>
27
28/* Standard interface flags (netdevice->flags). */
29#define IFF_UP          0x1             /* interface is up              */
30#define IFF_BROADCAST   0x2             /* broadcast address valid      */
31#define IFF_DEBUG       0x4             /* turn on debugging            */
32#define IFF_LOOPBACK    0x8             /* is a loopback net            */
33#define IFF_POINTOPOINT 0x10            /* interface is has p-p link    */
34#define IFF_NOTRAILERS  0x20            /* avoid use of trailers        */
35#define IFF_RUNNING     0x40            /* resources allocated          */
36#define IFF_NOARP       0x80            /* no ARP protocol              */
37#define IFF_PROMISC     0x100           /* receive all packets          */
38#define IFF_ALLMULTI    0x200           /* receive all multicast packets*/
39
40#define IFF_MASTER      0x400           /* master of a load balancer    */
41#define IFF_SLAVE       0x800           /* slave of a load balancer     */
42
43#define IFF_MULTICAST   0x1000          /* Supports multicast           */
44
45#define IFF_VOLATILE    (IFF_LOOPBACK|IFF_POINTOPOINT|IFF_BROADCAST|IFF_MASTER|IFF_SLAVE|IFF_RUNNING)
46
47#define IFF_PORTSEL     0x2000          /* can set media type           */
48#define IFF_AUTOMEDIA   0x4000          /* auto media select active     */
49#define IFF_DYNAMIC     0x8000          /* dialup device with changing addresses*/
50
51/* Private (from user) interface flags (netdevice->priv_flags). */
52#define IFF_802_1Q_VLAN 0x1             /* 802.1Q VLAN device.          */
53#define IFF_EBRIDGE     0x2             /* Ethernet bridging device.    */
54
55#define IF_GET_IFACE    0x0001          /* for querying only */
56#define IF_GET_PROTO    0x0002
57
58/* For definitions see hdlc.h */
59#define IF_IFACE_V35    0x1000          /* V.35 serial interface        */
60#define IF_IFACE_V24    0x1001          /* V.24 serial interface        */
61#define IF_IFACE_X21    0x1002          /* X.21 serial interface        */
62#define IF_IFACE_T1     0x1003          /* T1 telco serial interface    */
63#define IF_IFACE_E1     0x1004          /* E1 telco serial interface    */
64#define IF_IFACE_SYNC_SERIAL 0x1005     /* can't be set by software     */
65#define IF_IFACE_X21D   0x1006          /* X.21 Dual Clocking (FarSite) */
66
67/* For definitions see hdlc.h */
68#define IF_PROTO_HDLC   0x2000          /* raw HDLC protocol            */
69#define IF_PROTO_PPP    0x2001          /* PPP protocol                 */
70#define IF_PROTO_CISCO  0x2002          /* Cisco HDLC protocol          */
71#define IF_PROTO_FR     0x2003          /* Frame Relay protocol         */
72#define IF_PROTO_FR_ADD_PVC 0x2004      /*    Create FR PVC             */
73#define IF_PROTO_FR_DEL_PVC 0x2005      /*    Delete FR PVC             */
74#define IF_PROTO_X25    0x2006          /* X.25                         */
75#define IF_PROTO_HDLC_ETH 0x2007        /* raw HDLC, Ethernet emulation */
76#define IF_PROTO_FR_ADD_ETH_PVC 0x2008  /*  Create FR Ethernet-bridged PVC */
77#define IF_PROTO_FR_DEL_ETH_PVC 0x2009  /*  Delete FR Ethernet-bridged PVC */
78#define IF_PROTO_FR_PVC 0x200A          /* for reading PVC status       */
79#define IF_PROTO_FR_ETH_PVC 0x200B
80#define IF_PROTO_RAW    0x200C          /* RAW Socket                   */
81
82
83/*
84 *      Device mapping structure. I'd just gone off and designed a
85 *      beautiful scheme using only loadable modules with arguments
86 *      for driver options and along come the PCMCIA people 8)
87 *
88 *      Ah well. The get() side of this is good for WDSETUP, and it'll
89 *      be handy for debugging things. The set side is fine for now and
90 *      being very small might be worth keeping for clean configuration.
91 */
92
93#ifndef _NET_IF_H
94
95struct ifmap
96{
97        unsigned long mem_start;
98        unsigned long mem_end;
99        unsigned short base_addr; 
100        unsigned char irq;
101        unsigned char dma;
102        unsigned char port;
103        /* 3 bytes spare */
104};
105
106#endif
107
108struct if_settings
109{
110        unsigned int type;      /* Type of physical device or protocol */
111        unsigned int size;      /* Size of the data allocated by the caller */
112        union {
113                /* {atm/eth/dsl}_settings anyone ? */
114                raw_hdlc_proto          *raw_hdlc;
115                cisco_proto             *cisco;
116                fr_proto                *fr;
117                fr_proto_pvc            *fr_pvc;
118                fr_proto_pvc_info       *fr_pvc_info;
119
120                /* interface settings */
121                sync_serial_settings    *sync;
122                te1_settings            *te1;
123        } ifs_ifsu;
124};
125
126/*
127 * Interface request structure used for socket
128 * ioctl's.  All interface ioctl's must have parameter
129 * definitions which begin with ifr_name.  The
130 * remainder may be interface specific.
131 */
132
133#ifndef _NET_IF_H
134
135struct ifreq
136{
137#define IFHWADDRLEN     6
138        union
139        {
140                char    ifrn_name[IFNAMSIZ];            /* if name, e.g. "en0" */
141        } ifr_ifrn;
142       
143        union {
144                struct  sockaddr ifru_addr;
145                struct  sockaddr ifru_dstaddr;
146                struct  sockaddr ifru_broadaddr;
147                struct  sockaddr ifru_netmask;
148                struct  sockaddr ifru_hwaddr;
149                short   ifru_flags;
150                int     ifru_ivalue;
151                int     ifru_mtu;
152                struct  ifmap ifru_map;
153                char    ifru_slave[IFNAMSIZ];   /* Just fits the size */
154                char    ifru_newname[IFNAMSIZ];
155                char *  ifru_data;
156                struct  if_settings ifru_settings;
157        } ifr_ifru;
158};
159
160#endif
161
162#define ifr_name        ifr_ifrn.ifrn_name      /* interface name       */
163#define ifr_hwaddr      ifr_ifru.ifru_hwaddr    /* MAC address          */
164#define ifr_addr        ifr_ifru.ifru_addr      /* address              */
165#define ifr_dstaddr     ifr_ifru.ifru_dstaddr   /* other end of p-p lnk */
166#define ifr_broadaddr   ifr_ifru.ifru_broadaddr /* broadcast address    */
167#define ifr_netmask     ifr_ifru.ifru_netmask   /* interface net mask   */
168#define ifr_flags       ifr_ifru.ifru_flags     /* flags                */
169#define ifr_metric      ifr_ifru.ifru_ivalue    /* metric               */
170#define ifr_mtu         ifr_ifru.ifru_mtu       /* mtu                  */
171#define ifr_map         ifr_ifru.ifru_map       /* device map           */
172#define ifr_slave       ifr_ifru.ifru_slave     /* slave device         */
173#define ifr_data        ifr_ifru.ifru_data      /* for use by interface */
174#define ifr_ifindex     ifr_ifru.ifru_ivalue    /* interface index      */
175#define ifr_bandwidth   ifr_ifru.ifru_ivalue    /* link bandwidth       */
176#define ifr_qlen        ifr_ifru.ifru_ivalue    /* Queue length         */
177#define ifr_newname     ifr_ifru.ifru_newname   /* New name             */
178#define ifr_settings    ifr_ifru.ifru_settings  /* Device/proto settings*/
179
180/*
181 * Structure used in SIOCGIFCONF request.
182 * Used to retrieve interface configuration
183 * for machine (useful for programs which
184 * must know all networks accessible).
185 */
186
187#ifndef _NET_IF_H
188
189struct ifconf
190{
191        int     ifc_len;                        /* size of buffer       */
192        union 
193        {
194                char *                  ifcu_buf;
195                struct  ifreq           *ifcu_req;
196        } ifc_ifcu;
197};
198
199#endif
200
201#define ifc_buf ifc_ifcu.ifcu_buf               /* buffer address       */
202#define ifc_req ifc_ifcu.ifcu_req               /* array of structures  */
203
204
205#endif /* _LINUX_IF_H */
Note: See TracBrowser for help on using the repository browser.