Module Name: src
Committed By: maxv
Date: Sun Apr 8 11:50:46 UTC 2018
Modified Files:
src/sys/netinet: ip_var.h
Log Message:
Remove unused field, and sync comment with reality.
To generate a diff of this commit:
cvs rdiff -u -r1.123 -r1.124 src/sys/netinet/ip_var.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/netinet/ip_var.h
diff -u src/sys/netinet/ip_var.h:1.123 src/sys/netinet/ip_var.h:1.124
--- src/sys/netinet/ip_var.h:1.123 Tue Apr 3 08:46:01 2018
+++ src/sys/netinet/ip_var.h Sun Apr 8 11:50:46 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: ip_var.h,v 1.123 2018/04/03 08:46:01 maxv Exp $ */
+/* $NetBSD: ip_var.h,v 1.124 2018/04/08 11:50:46 maxv Exp $ */
/*
* Copyright (c) 1982, 1986, 1993
@@ -67,17 +67,13 @@ struct ipflow {
};
/*
- * IP sequence queue structure.
+ * TCP sequence queue structure.
*/
TAILQ_HEAD(ipqehead, ipqent);
struct ipqent {
TAILQ_ENTRY(ipqent) ipqe_q;
struct mbuf *ipqe_m; /* point to first mbuf */
struct mbuf *ipre_mlast; /* point to last mbuf */
- u_int8_t ipqe_mff; /* for IP fragmentation */
- /*
- * The following are used in TCP reassembly
- */
TAILQ_ENTRY(ipqent) ipqe_timeq;
u_int32_t ipqe_seq;
u_int32_t ipqe_len;