about summary refs log tree commit diff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2009-04-03 03:48:08 +0000
committerUlrich Drepper <drepper@redhat.com>2009-04-03 03:48:08 +0000
commita065c0076a1b76b9eb375ae051176e9bf518816a (patch)
tree8fad6d07d51f8dc9b5a55107a77a17b49473d343
parentff886b82a2b65758950bdb4687cf5a1238f697a1 (diff)
downloadglibc-a065c0076a1b76b9eb375ae051176e9bf518816a.tar.gz
glibc-a065c0076a1b76b9eb375ae051176e9bf518816a.tar.xz
glibc-a065c0076a1b76b9eb375ae051176e9bf518816a.zip
Add missing protocol numbers.
	* sysdeps/unix/sysv/linux/bits/socket.h: Add missing protocol numbers.
-rw-r--r--ChangeLog2
-rw-r--r--sysdeps/unix/sysv/linux/bits/socket.h12
2 files changed, 13 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index e5f6ba02de..08e0dd3c8f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2009-04-02  Ulrich Drepper  <drepper@redhat.com>
 
+	* sysdeps/unix/sysv/linux/bits/socket.h: Add missing protocol numbers.
+
 	* configure.in: Recognize --enable-nss-crypt.
 	* config.make.in: Add nss-crypt entry.
 	* crypt/Makefile: If nss-crypt==yes, don't build md5.c, sha256.c,
diff --git a/sysdeps/unix/sysv/linux/bits/socket.h b/sysdeps/unix/sysv/linux/bits/socket.h
index 72c7335ae5..88062e59ad 100644
--- a/sysdeps/unix/sysv/linux/bits/socket.h
+++ b/sysdeps/unix/sysv/linux/bits/socket.h
@@ -95,15 +95,20 @@ enum __socket_type
 #define	PF_ASH		18	/* Ash.  */
 #define	PF_ECONET	19	/* Acorn Econet.  */
 #define	PF_ATMSVC	20	/* ATM SVCs.  */
+#define PF_RDS		21	/* RDS sockets.  */
 #define	PF_SNA		22	/* Linux SNA Project */
 #define	PF_IRDA		23	/* IRDA sockets.  */
 #define	PF_PPPOX	24	/* PPPoX sockets.  */
 #define	PF_WANPIPE	25	/* Wanpipe API sockets.  */
+#define PF_LLC		26	/* Linux LLC.  */
+#define PF_CAN		29	/* Controller Area Network.  */
+#define PF_TIPC		30	/* TIPC sockets.  */
 #define	PF_BLUETOOTH	31	/* Bluetooth sockets.  */
 #define	PF_IUCV		32	/* IUCV sockets.  */
 #define PF_RXRPC	33	/* RxRPC sockets.  */
 #define PF_ISDN		34	/* mISDN sockets.  */
-#define	PF_MAX		35	/* For now..  */
+#define PF_PHONET	35	/* Phonet sockets.  */
+#define	PF_MAX		36	/* For now..  */
 
 /* Address families.  */
 #define	AF_UNSPEC	PF_UNSPEC
@@ -130,14 +135,19 @@ enum __socket_type
 #define	AF_ASH		PF_ASH
 #define	AF_ECONET	PF_ECONET
 #define	AF_ATMSVC	PF_ATMSVC
+#define AF_RDS		PF_RDS
 #define	AF_SNA		PF_SNA
 #define	AF_IRDA		PF_IRDA
 #define	AF_PPPOX	PF_PPPOX
 #define	AF_WANPIPE	PF_WANPIPE
+#define AF_LLC		PF_LLC
+#define AF_CAN		PF_CAN
+#define AF_TIPC		PF_TIPC
 #define	AF_BLUETOOTH	PF_BLUETOOTH
 #define	AF_IUCV		PF_IUCV
 #define AF_RXRPC	PF_RXRPC
 #define AF_ISDN		PF_ISDN
+#define AF_PHONET	PF_PHONET
 #define	AF_MAX		PF_MAX
 
 /* Socket level values.  Others are defined in the appropriate headers.