diff options
author | Ulrich Drepper <drepper@redhat.com> | 2009-06-18 07:52:38 -0700 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2009-06-18 07:52:38 -0700 |
commit | d0a2af710654a038903dd4a300030670bfbeaa2d (patch) | |
tree | 7907571cef2632bba3cd2ffaacf69bfae24517de /sysdeps/unix/sysv/linux/bits | |
parent | d8366b0970865f39e01c6dd0d0cafab31fc3c9a4 (diff) | |
download | glibc-d0a2af710654a038903dd4a300030670bfbeaa2d.tar.gz glibc-d0a2af710654a038903dd4a300030670bfbeaa2d.tar.xz glibc-d0a2af710654a038903dd4a300030670bfbeaa2d.zip |
Add 802.15.4 definitions to header files.
Diffstat (limited to 'sysdeps/unix/sysv/linux/bits')
-rw-r--r-- | sysdeps/unix/sysv/linux/bits/socket.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/bits/socket.h b/sysdeps/unix/sysv/linux/bits/socket.h index 88062e59ad..f23b338a35 100644 --- a/sysdeps/unix/sysv/linux/bits/socket.h +++ b/sysdeps/unix/sysv/linux/bits/socket.h @@ -1,5 +1,5 @@ /* System-specific socket constants and types. Linux version. - Copyright (C) 1991, 1992, 1994-2001, 2004, 2006, 2007, 2008 + Copyright (C) 1991, 1992, 1994-2001, 2004, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. This file is part of the GNU C Library. @@ -108,7 +108,8 @@ enum __socket_type #define PF_RXRPC 33 /* RxRPC sockets. */ #define PF_ISDN 34 /* mISDN sockets. */ #define PF_PHONET 35 /* Phonet sockets. */ -#define PF_MAX 36 /* For now.. */ +#define PF_IEEE802154 36 /* IEEE 802.15.4 sockets. */ +#define PF_MAX 37 /* For now.. */ /* Address families. */ #define AF_UNSPEC PF_UNSPEC @@ -148,6 +149,7 @@ enum __socket_type #define AF_RXRPC PF_RXRPC #define AF_ISDN PF_ISDN #define AF_PHONET PF_PHONET +#define AF_IEEE802154 PF_IEEE802154 #define AF_MAX PF_MAX /* Socket level values. Others are defined in the appropriate headers. |