svn commit: r282982 - head/sys/netipsec

George V. Neville-Neil gnn at FreeBSD.org
Fri May 15 18:04:50 UTC 2015


Author: gnn
Date: Fri May 15 18:04:49 2015
New Revision: 282982
URL: https://svnweb.freebsd.org/changeset/base/282982

Log:
  Summary: Remove spurious, extra, next header comments.
  Correct the name of the pad length field.

Modified:
  head/sys/netipsec/esp.h

Modified: head/sys/netipsec/esp.h
==============================================================================
--- head/sys/netipsec/esp.h	Fri May 15 17:51:03 2015	(r282981)
+++ head/sys/netipsec/esp.h	Fri May 15 18:04:49 2015	(r282982)
@@ -42,8 +42,7 @@ struct esp {
 	/*variable size, 32bit bound*/	/* Initialization Vector */
 	/*variable size*/		/* Payload data */
 	/*variable size*/		/* padding */
-	/*8bit*/			/* pad size */
-	/*8bit*/			/* next header */
+	/*8bit*/			/* pad length */
 	/*8bit*/			/* next header */
 	/*variable size, 32bit bound*/	/* Authentication data (new IPsec) */
 };
@@ -53,8 +52,7 @@ struct newesp {
 	u_int32_t	esp_seq;	/* Sequence number */
 	/*variable size*/		/* (IV and) Payload data */
 	/*variable size*/		/* padding */
-	/*8bit*/			/* pad size */
-	/*8bit*/			/* next header */
+	/*8bit*/			/* pad length */
 	/*8bit*/			/* next header */
 	/*variable size, 32bit bound*/	/* Authentication data */
 };


More information about the svn-src-all mailing list