if.h 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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. #include <linux/types.h> /* for "__kernel_caddr_t" et al */
  22. #define IFNAMSIZ 16
  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 /* interface RFC2863 OPER_UP */
  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_PORTSEL 0x2000 /* can set media type */
  38. #define IFF_AUTOMEDIA 0x4000 /* auto media select active */
  39. #define IFF_DYNAMIC 0x8000 /* dialup device with changing addresses*/
  40. #define IFF_LOWER_UP 0x10000 /* driver signals L1 up */
  41. #define IFF_DORMANT 0x20000 /* driver signals dormant */
  42. #define IFF_ECHO 0x40000 /* echo sent packets */
  43. #define IFF_VOLATILE (IFF_LOOPBACK|IFF_POINTOPOINT|IFF_BROADCAST|IFF_ECHO|\
  44. IFF_MASTER|IFF_SLAVE|IFF_RUNNING|IFF_LOWER_UP|IFF_DORMANT)
  45. /* Private (from user) interface flags (netdevice->priv_flags). */
  46. #define IFF_802_1Q_VLAN 0x1 /* 802.1Q VLAN device. */
  47. #define IFF_EBRIDGE 0x2 /* Ethernet bridging device. */
  48. #define IFF_SLAVE_INACTIVE 0x4 /* bonding slave not the curr. active */
  49. #define IFF_MASTER_8023AD 0x8 /* bonding master, 802.3ad. */
  50. #define IFF_MASTER_ALB 0x10 /* bonding master, balance-alb. */
  51. #define IFF_BONDING 0x20 /* bonding master or slave */
  52. #define IFF_SLAVE_NEEDARP 0x40 /* need ARPs for validation */
  53. #define IFF_ISATAP 0x80 /* ISATAP interface (RFC4214) */
  54. #define IF_GET_IFACE 0x0001 /* for querying only */
  55. #define IF_GET_PROTO 0x0002
  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. /* For definitions see hdlc.h */
  65. #define IF_PROTO_HDLC 0x2000 /* raw HDLC protocol */
  66. #define IF_PROTO_PPP 0x2001 /* PPP protocol */
  67. #define IF_PROTO_CISCO 0x2002 /* Cisco HDLC protocol */
  68. #define IF_PROTO_FR 0x2003 /* Frame Relay protocol */
  69. #define IF_PROTO_FR_ADD_PVC 0x2004 /* Create FR PVC */
  70. #define IF_PROTO_FR_DEL_PVC 0x2005 /* Delete FR PVC */
  71. #define IF_PROTO_X25 0x2006 /* X.25 */
  72. #define IF_PROTO_HDLC_ETH 0x2007 /* raw HDLC, Ethernet emulation */
  73. #define IF_PROTO_FR_ADD_ETH_PVC 0x2008 /* Create FR Ethernet-bridged PVC */
  74. #define IF_PROTO_FR_DEL_ETH_PVC 0x2009 /* Delete FR Ethernet-bridged PVC */
  75. #define IF_PROTO_FR_PVC 0x200A /* for reading PVC status */
  76. #define IF_PROTO_FR_ETH_PVC 0x200B
  77. #define IF_PROTO_RAW 0x200C /* RAW Socket */
  78. /* RFC 2863 operational status */
  79. enum {
  80. IF_OPER_UNKNOWN,
  81. IF_OPER_NOTPRESENT,
  82. IF_OPER_DOWN,
  83. IF_OPER_LOWERLAYERDOWN,
  84. IF_OPER_TESTING,
  85. IF_OPER_DORMANT,
  86. IF_OPER_UP,
  87. };
  88. /* link modes */
  89. enum {
  90. IF_LINK_MODE_DEFAULT,
  91. IF_LINK_MODE_DORMANT, /* limit upward transition to dormant */
  92. };
  93. /*
  94. * Device mapping structure. I'd just gone off and designed a
  95. * beautiful scheme using only loadable modules with arguments
  96. * for driver options and along come the PCMCIA people 8)
  97. *
  98. * Ah well. The get() side of this is good for WDSETUP, and it'll
  99. * be handy for debugging things. The set side is fine for now and
  100. * being very small might be worth keeping for clean configuration.
  101. */
  102. struct ifmap
  103. {
  104. unsigned long mem_start;
  105. unsigned long mem_end;
  106. unsigned short base_addr;
  107. unsigned char irq;
  108. unsigned char dma;
  109. unsigned char port;
  110. /* 3 bytes spare */
  111. };
  112. #endif /* _LINUX_IF_H */