diff options
author | Andreas Jaeger <aj@suse.de> | 2001-03-31 19:57:19 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2001-03-31 19:57:19 +0000 |
commit | 2e3f5f597947d07831f3104ba3753153de5346a2 (patch) | |
tree | a1c6bb12f5f3b96c804a723f52f2b983c64d0247 /sysdeps/unix/sysv/linux/net | |
parent | 89aa362677cba6225f35ab56145d73a3a2a3558e (diff) | |
download | glibc-2e3f5f597947d07831f3104ba3753153de5346a2.tar glibc-2e3f5f597947d07831f3104ba3753153de5346a2.tar.gz glibc-2e3f5f597947d07831f3104ba3753153de5346a2.tar.bz2 glibc-2e3f5f597947d07831f3104ba3753153de5346a2.zip |
* sysdeps/unix/sysv/linux/net/if_arp.h (ARPHRD_RAWHDLC): Added.
(ARPHRD_HDLC): Define as alias for ARPHRD_CISCO.
(ARPHRD_CISCO): New.
Changes from Linux 2.4.3.
Diffstat (limited to 'sysdeps/unix/sysv/linux/net')
-rw-r--r-- | sysdeps/unix/sysv/linux/net/if_arp.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/net/if_arp.h b/sysdeps/unix/sysv/linux/net/if_arp.h index d5574d9e03..5625030ff5 100644 --- a/sysdeps/unix/sysv/linux/net/if_arp.h +++ b/sysdeps/unix/sysv/linux/net/if_arp.h @@ -1,5 +1,5 @@ /* Definitions for Address Resolution Protocol. - Copyright (C) 1997, 1999 Free Software Foundation, Inc. + Copyright (C) 1997, 1999, 2001 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997. @@ -95,9 +95,11 @@ struct arphdr #define ARPHRD_X25 271 /* CCITT X.25. */ #define ARPHDR_HWX25 272 /* Boards with X.25 in firmware. */ #define ARPHRD_PPP 512 -#define ARPHRD_HDLC 513 /* (Cisco) HDLC. */ +#define ARPHRD_CISCO 513 /* Cisco HDLC. */ +#define ARPHRD_HDLC ARPHRD_CISCO #define ARPHRD_LAPB 516 /* LAPB. */ #define ARPHRD_DDCMP 517 /* Digital's DDCMP. */ +#define ARPHRD_RAWHDLC 518 /* Raw HDLC. */ #define ARPHRD_TUNNEL 768 /* IPIP tunnel. */ #define ARPHRD_TUNNEL6 769 /* IPIP6 tunnel. */ |