svn commit: r248269 - user/andre/tcp-ao/sys/netinet
Andre Oppermann
andre at FreeBSD.org
Thu Mar 14 16:27:02 UTC 2013
Author: andre
Date: Thu Mar 14 16:27:01 2013
New Revision: 248269
URL: http://svnweb.freebsd.org/changeset/base/248269
Log:
Add IPv6 pseudo header for use in checksum calculations.
Sponsored by: Juniper Networks
Modified:
user/andre/tcp-ao/sys/netinet/ip6.h
Modified: user/andre/tcp-ao/sys/netinet/ip6.h
==============================================================================
--- user/andre/tcp-ao/sys/netinet/ip6.h Thu Mar 14 16:24:50 2013 (r248268)
+++ user/andre/tcp-ao/sys/netinet/ip6.h Thu Mar 14 16:27:01 2013 (r248269)
@@ -248,6 +248,18 @@ struct ip6_frag {
#endif /* BYTE_ORDER == LITTLE_ENDIAN */
/*
+ * This is the real IPv6 pseudo header, used for computing the TCP and UDP
+ * checksums.
+ */
+struct ip6pseudo {
+ struct in6_addr ip6pseudo_src; /* source internet address */
+ struct in6_addr ip6pseudo_dst; /* destination internet address */
+ u_int32_t ip6pseudo_len; /* payload length */
+ u_int16_t ip6pseudo_pad; /* padding (zero) */
+ u_int16_t ip6pseudo_p; /* next-header (protocol) */
+};
+
+/*
* Internet implementation parameters.
*/
#define IPV6_MAXHLIM 255 /* maximum hoplimit */
More information about the svn-src-user
mailing list