diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-03-25 01:14:36 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-03-25 01:14:36 +0000 |
commit | 5e826ab537a668c9486deecc3d7fc1cbe1abda2a (patch) | |
tree | 4c9a15802afe26941eb8fe4172863c7356a41754 /inet | |
parent | c6289757d6e374904d720ff9d86d304605c952b1 (diff) | |
download | glibc-5e826ab537a668c9486deecc3d7fc1cbe1abda2a.tar glibc-5e826ab537a668c9486deecc3d7fc1cbe1abda2a.tar.gz glibc-5e826ab537a668c9486deecc3d7fc1cbe1abda2a.tar.bz2 glibc-5e826ab537a668c9486deecc3d7fc1cbe1abda2a.zip |
Update.
2003-03-24 Jon Grimm <jgrimm@us.ibm.com>
* inet/netinet/in.h: Add IPPROTO_SCTP.
2003-03-24 Ulrich Drepper <drepper@redhat.com>
* sysdeps/unix/sysv/linux/sys/epoll.h (EPOLLET): Define.
Diffstat (limited to 'inet')
-rw-r--r-- | inet/netinet/in.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/inet/netinet/in.h b/inet/netinet/in.h index 26be9ea751..a87f35e99a 100644 --- a/inet/netinet/in.h +++ b/inet/netinet/in.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-1999, 2000, 2001 Free Software Foundation, Inc. +/* Copyright (C) 1991-1999, 2000, 2001, 2003 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -79,6 +79,8 @@ enum #define IPPROTO_PIM IPPROTO_PIM IPPROTO_COMP = 108, /* Compression Header Protocol. */ #define IPPROTO_COMP IPPROTO_COMP + IPPROTO_SCTP = 132, /* Stream Control Transmission Protocol. */ +#define IPPROTO_SCTP IPPROTO_SCTP IPPROTO_RAW = 255, /* Raw IP packets. */ #define IPPROTO_RAW IPPROTO_RAW IPPROTO_MAX |