diff options
author | Ulrich Drepper <drepper@redhat.com> | 2007-06-30 17:07:48 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2007-06-30 17:07:48 +0000 |
commit | 34e0bbaf1d88c3f07b2f09da52533a2dc0b84f30 (patch) | |
tree | 28aa1c833eb353afebc539f7dbded1493a719c47 /sysdeps | |
parent | 3351649410d50dfbd3a52854dfe63107b88a8ea5 (diff) | |
download | glibc-34e0bbaf1d88c3f07b2f09da52533a2dc0b84f30.tar glibc-34e0bbaf1d88c3f07b2f09da52533a2dc0b84f30.tar.gz glibc-34e0bbaf1d88c3f07b2f09da52533a2dc0b84f30.tar.bz2 glibc-34e0bbaf1d88c3f07b2f09da52533a2dc0b84f30.zip |
* sysdeps/unix/sysv/linux/bits/socket.h: Add PF_RXRPC and AF_RXRPC.
2007-06-29 Martin Schwidefsky <schwidefsky@de.ibm.com>
* sysdeps/unix/sysv/linux/bits/socket.h: Add PF_IUCV and AF_IUCV.
2007-06-29 Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/unix/sysv/linux/bits/socket.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/bits/socket.h b/sysdeps/unix/sysv/linux/bits/socket.h index 377f589bbd..ecba5b2a96 100644 --- a/sysdeps/unix/sysv/linux/bits/socket.h +++ b/sysdeps/unix/sysv/linux/bits/socket.h @@ -90,7 +90,9 @@ enum __socket_type #define PF_PPPOX 24 /* PPPoX sockets. */ #define PF_WANPIPE 25 /* Wanpipe API sockets. */ #define PF_BLUETOOTH 31 /* Bluetooth sockets. */ -#define PF_MAX 32 /* For now.. */ +#define PF_IUCV 32 /* IUCV sockets. */ +#define PF_RXRPC 33 /* RxRPC sockets. */ +#define PF_MAX 34 /* For now.. */ /* Address families. */ #define AF_UNSPEC PF_UNSPEC @@ -122,6 +124,8 @@ enum __socket_type #define AF_PPPOX PF_PPPOX #define AF_WANPIPE PF_WANPIPE #define AF_BLUETOOTH PF_BLUETOOTH +#define AF_IUCV PF_IUCV +#define AF_RXRPC PF_RXRPC #define AF_MAX PF_MAX /* Socket level values. Others are defined in the appropriate headers. |