diff options
author | Ulrich Drepper <drepper@redhat.com> | 2008-05-14 17:33:37 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2008-05-14 17:33:37 +0000 |
commit | 372bfcac7303b226cfb376ff6a4bdda0eab09419 (patch) | |
tree | 7e819f7786f598282619ff068bc8b1d46ca2f4ba /sysdeps/unix/sysv/linux/bits/socket.h | |
parent | * po/lt.po: New file. From Lituanian translation team. (diff) | |
download | glibc-372bfcac7303b226cfb376ff6a4bdda0eab09419.tar.gz glibc-372bfcac7303b226cfb376ff6a4bdda0eab09419.tar.bz2 glibc-372bfcac7303b226cfb376ff6a4bdda0eab09419.zip |
* sysdeps/posix/getaddrinfo.c: Implement handling of DCCP and
UDPlite.
* nss/getent.c (ahosts_keys_int): Handle all known socket types.
* inet/netinet/in.h (IPPIPPROTO_DCCP, IPPROTO_UDPLITE): Define.
* sysdeps/unix/sysv/linux/bits/socket.h (SOCK_DCCP): Define.
Diffstat (limited to 'sysdeps/unix/sysv/linux/bits/socket.h')
-rw-r--r-- | sysdeps/unix/sysv/linux/bits/socket.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/bits/socket.h b/sysdeps/unix/sysv/linux/bits/socket.h index ceb60133e3..3dda3d1c29 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 + Copyright (C) 1991, 1992, 1994-2001, 2004, 2006, 2007, 2008 Free Software Foundation, Inc. This file is part of the GNU C Library. @@ -52,6 +52,8 @@ enum __socket_type SOCK_SEQPACKET = 5, /* Sequenced, reliable, connection-based, datagrams of fixed maximum length. */ #define SOCK_SEQPACKET SOCK_SEQPACKET + SOCK_DCCP = 6, +#define SOCK_DCCP SOCK_DCCP /* Datagram Congestion Control Protocol. */ SOCK_PACKET = 10 /* Linux specific way of getting packets at the dev level. For writing rarp and other similar things on the user level. */ |