svn commit: r328478 - head/sys/netinet

Michael Tuexen tuexen at FreeBSD.org
Sat Jan 27 13:46:56 UTC 2018


Author: tuexen
Date: Sat Jan 27 13:46:55 2018
New Revision: 328478
URL: https://svnweb.freebsd.org/changeset/base/328478

Log:
  Add constant for the PAD chunk as defined in RFC 4820.
  This will be used by traceroute and traceroute6 soon.
  
  MFC after:	1 week

Modified:
  head/sys/netinet/sctp_constants.h

Modified: head/sys/netinet/sctp_constants.h
==============================================================================
--- head/sys/netinet/sctp_constants.h	Sat Jan 27 13:43:03 2018	(r328477)
+++ head/sys/netinet/sctp_constants.h	Sat Jan 27 13:46:55 2018	(r328478)
@@ -420,6 +420,8 @@ __FBSDID("$FreeBSD$");
 #define SCTP_RANDOM			0x8002
 #define SCTP_CHUNK_LIST			0x8003
 #define SCTP_HMAC_LIST			0x8004
+/* RFC 4820 */
+#define SCTP_PAD			0x8005
 /* RFC 5061 */
 #define SCTP_SUPPORTED_CHUNK_EXT	0x8008
 


More information about the svn-src-head mailing list