diff options
author | jch <jch@FreeBSD.org> | 2014-11-17 14:56:02 +0000 |
---|---|---|
committer | jch <jch@FreeBSD.org> | 2014-11-17 14:56:02 +0000 |
commit | 2bdae054ab52274fa82b10a36bdf0f63d7310ae6 (patch) | |
tree | 7dd0dd407fe8658ad8ae7c4d125071da97ac280d /sys/netinet | |
parent | 9d71a483ee4d8b9217bc5465780a78b820a723ea (diff) | |
download | FreeBSD-src-2bdae054ab52274fa82b10a36bdf0f63d7310ae6.zip FreeBSD-src-2bdae054ab52274fa82b10a36bdf0f63d7310ae6.tar.gz |
Re-introduce padding fields removed with r264321 to keep
struct tcptw ABI unchanged.
Suggested by: jhb
Approved by: jhb (mentor)
MFC after: 1 day
X-MFC-With: r264321
Diffstat (limited to 'sys/netinet')
-rw-r--r-- | sys/netinet/tcp_var.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/netinet/tcp_var.h b/sys/netinet/tcp_var.h index 4353b77..0bf5be4 100644 --- a/sys/netinet/tcp_var.h +++ b/sys/netinet/tcp_var.h @@ -357,6 +357,8 @@ struct tcptw { u_int t_starttime; int tw_time; TAILQ_ENTRY(tcptw) tw_2msl; + void *tw_pspare; /* TCP_SIGNATURE */ + u_int *tw_spare; /* TCP_SIGNATURE */ }; #define intotcpcb(ip) ((struct tcpcb *)(ip)->inp_ppcb) |