if.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:5k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  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, <bir7@leland.Stanford.Edu>
  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. #include <linux/types.h> /* for "__kernel_caddr_t" et al */
  22. #include <linux/socket.h> /* for "struct sockaddr" et al */
  23. /* Standard interface flags (netdevice->flags). */
  24. #define IFF_UP 0x1 /* interface is up */
  25. #define IFF_BROADCAST 0x2 /* broadcast address valid */
  26. #define IFF_DEBUG 0x4 /* turn on debugging */
  27. #define IFF_LOOPBACK 0x8 /* is a loopback net */
  28. #define IFF_POINTOPOINT 0x10 /* interface is has p-p link */
  29. #define IFF_NOTRAILERS 0x20 /* avoid use of trailers */
  30. #define IFF_RUNNING 0x40 /* resources allocated */
  31. #define IFF_NOARP 0x80 /* no ARP protocol */
  32. #define IFF_PROMISC 0x100 /* receive all packets */
  33. #define IFF_ALLMULTI 0x200 /* receive all multicast packets*/
  34. #define IFF_MASTER 0x400 /* master of a load balancer  */
  35. #define IFF_SLAVE 0x800 /* slave of a load balancer */
  36. #define IFF_MULTICAST 0x1000 /* Supports multicast */
  37. #define IFF_VOLATILE (IFF_LOOPBACK|IFF_POINTOPOINT|IFF_BROADCAST|IFF_MASTER|IFF_SLAVE|IFF_RUNNING)
  38. #define IFF_PORTSEL 0x2000          /* can set media type */
  39. #define IFF_AUTOMEDIA 0x4000 /* auto media select active */
  40. #define IFF_DYNAMIC 0x8000 /* dialup device with changing addresses*/
  41. /* Private (from user) interface flags (netdevice->priv_flags). */
  42. #define IFF_802_1Q_VLAN 0x1             /* 802.1Q VLAN device.          */
  43. /*
  44.  * Device mapping structure. I'd just gone off and designed a 
  45.  * beautiful scheme using only loadable modules with arguments
  46.  * for driver options and along come the PCMCIA people 8)
  47.  *
  48.  * Ah well. The get() side of this is good for WDSETUP, and it'll
  49.  * be handy for debugging things. The set side is fine for now and
  50.  * being very small might be worth keeping for clean configuration.
  51.  */
  52. struct ifmap 
  53. {
  54. unsigned long mem_start;
  55. unsigned long mem_end;
  56. unsigned short base_addr; 
  57. unsigned char irq;
  58. unsigned char dma;
  59. unsigned char port;
  60. /* 3 bytes spare */
  61. };
  62. /*
  63.  * Interface request structure used for socket
  64.  * ioctl's.  All interface ioctl's must have parameter
  65.  * definitions which begin with ifr_name.  The
  66.  * remainder may be interface specific.
  67.  */
  68. struct ifreq 
  69. {
  70. #define IFHWADDRLEN 6
  71. #define IFNAMSIZ 16
  72. union
  73. {
  74. char ifrn_name[IFNAMSIZ]; /* if name, e.g. "en0" */
  75. } ifr_ifrn;
  76. union {
  77. struct sockaddr ifru_addr;
  78. struct sockaddr ifru_dstaddr;
  79. struct sockaddr ifru_broadaddr;
  80. struct sockaddr ifru_netmask;
  81. struct  sockaddr ifru_hwaddr;
  82. short ifru_flags;
  83. int ifru_ivalue;
  84. int ifru_mtu;
  85. struct  ifmap ifru_map;
  86. char ifru_slave[IFNAMSIZ]; /* Just fits the size */
  87. char ifru_newname[IFNAMSIZ];
  88. char * ifru_data;
  89. } ifr_ifru;
  90. };
  91. #define ifr_name ifr_ifrn.ifrn_name /* interface name  */
  92. #define ifr_hwaddr ifr_ifru.ifru_hwaddr /* MAC address  */
  93. #define ifr_addr ifr_ifru.ifru_addr /* address */
  94. #define ifr_dstaddr ifr_ifru.ifru_dstaddr /* other end of p-p lnk */
  95. #define ifr_broadaddr ifr_ifru.ifru_broadaddr /* broadcast address */
  96. #define ifr_netmask ifr_ifru.ifru_netmask /* interface net mask */
  97. #define ifr_flags ifr_ifru.ifru_flags /* flags */
  98. #define ifr_metric ifr_ifru.ifru_ivalue /* metric */
  99. #define ifr_mtu ifr_ifru.ifru_mtu /* mtu */
  100. #define ifr_map ifr_ifru.ifru_map /* device map */
  101. #define ifr_slave ifr_ifru.ifru_slave /* slave device */
  102. #define ifr_data ifr_ifru.ifru_data /* for use by interface */
  103. #define ifr_ifindex ifr_ifru.ifru_ivalue /* interface index */
  104. #define ifr_bandwidth ifr_ifru.ifru_ivalue    /* link bandwidth */
  105. #define ifr_qlen ifr_ifru.ifru_ivalue /* Queue length  */
  106. #define ifr_newname ifr_ifru.ifru_newname /* New name */
  107. /*
  108.  * Structure used in SIOCGIFCONF request.
  109.  * Used to retrieve interface configuration
  110.  * for machine (useful for programs which
  111.  * must know all networks accessible).
  112.  */
  113. struct ifconf 
  114. {
  115. int ifc_len; /* size of buffer */
  116. union 
  117. {
  118. char * ifcu_buf;
  119. struct ifreq  *ifcu_req;
  120. } ifc_ifcu;
  121. };
  122. #define ifc_buf ifc_ifcu.ifcu_buf /* buffer address */
  123. #define ifc_req ifc_ifcu.ifcu_req /* array of structures */
  124. #endif /* _LINUX_IF_H */