Author: tuexen
Date: Sun Jun 22 16:22:44 2014
New Revision: 267721
URL: http://svnweb.freebsd.org/changeset/base/267721

Log:
  MFC r263094:
  
  SCTP uses CRC32C and not Adler anymore. While there change the reference
  to RFC 4960.
  This does not change any code, just comments.

Modified:
  stable/10/sys/netinet/sctp.h
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/netinet/sctp.h
==============================================================================
--- stable/10/sys/netinet/sctp.h        Sun Jun 22 16:21:14 2014        
(r267720)
+++ stable/10/sys/netinet/sctp.h        Sun Jun 22 16:22:44 2014        
(r267721)
@@ -43,13 +43,13 @@ __FBSDID("$FreeBSD$");
 #define SCTP_PACKED __attribute__((packed))
 
 /*
- * SCTP protocol - RFC2960.
+ * SCTP protocol - RFC4960.
  */
 struct sctphdr {
        uint16_t src_port;      /* source port */
        uint16_t dest_port;     /* destination port */
        uint32_t v_tag;         /* verification tag of packet */
-       uint32_t checksum;      /* Adler32 C-Sum */
+       uint32_t checksum;      /* CRC32C checksum */
        /* chunks follow... */
 }       SCTP_PACKED;
 
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to