Remove unused field, and sync comment with reality.
This commit is contained in:
parent
3211dce1df
commit
3b1b66cce9
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue