aboutsummaryrefslogtreecommitdiff
path: root/sys/netinet/in_pcb.h
diff options
context:
space:
mode:
authorBjoern A. Zeeb <bz@FreeBSD.org>2011-07-17 21:15:20 +0000
committerBjoern A. Zeeb <bz@FreeBSD.org>2011-07-17 21:15:20 +0000
commitd9a362862c59a04ac3069e42f2aa681fa3ff693c (patch)
tree30b630bd8b49f1677f29eda29cd406291b43802c /sys/netinet/in_pcb.h
parentf9373bbdac092938b4af3709260f98c1565382e7 (diff)
downloadsrc-d9a362862c59a04ac3069e42f2aa681fa3ff693c.tar.gz
src-d9a362862c59a04ac3069e42f2aa681fa3ff693c.zip
Add spares to the network stack for FreeBSD-9:
- TCP keep* timers - TCP UTO (adjust from what was there already) - netmap - route caching - user cookie (temporary to allow for the real fix) Slightly re-shuffle struct ifnet moving fields out of the middle of spares and to better align. Discussed with: rwatson (slightly earlier version)
Notes
Notes: svn path=/head/; revision=224151
Diffstat (limited to 'sys/netinet/in_pcb.h')
-rw-r--r--sys/netinet/in_pcb.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/netinet/in_pcb.h b/sys/netinet/in_pcb.h
index dfef96348efe..55270ec5c7d4 100644
--- a/sys/netinet/in_pcb.h
+++ b/sys/netinet/in_pcb.h
@@ -179,8 +179,9 @@ struct inpcb {
u_char inp_ip_minttl; /* (i) minimum TTL or drop */
uint32_t inp_flowid; /* (x) flow id / queue id */
u_int inp_refcount; /* (i) refcount */
- void *inp_pspare[4]; /* (x) rtentry / general use */
- u_int inp_ispare[4]; /* general use */
+ void *inp_pspare[5]; /* (x) route caching / general use */
+ u_int inp_ispare[6]; /* (x) route caching / user cookie /
+ * general use */
/* Local and foreign ports, local and foreign addr. */
struct in_conninfo inp_inc; /* (i/p) list for PCB's local port */