diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2004-01-14 13:38:22 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2004-01-14 13:38:22 +0000 |
commit | 3d4ecc0736f992b1b16a70695efacb6addadf423 (patch) | |
tree | 68405302c0f644e437a942ff13d5fb9ced143f4d /sys/netinet/tcp_var.h | |
parent | 9e07e62dbca43a58c7b6a3b39bd1f9a4e1013875 (diff) |
syncache+ipv6 support for TCP_SIGNATURE; with itojun; ok deraadt
Diffstat (limited to 'sys/netinet/tcp_var.h')
-rw-r--r-- | sys/netinet/tcp_var.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/netinet/tcp_var.h b/sys/netinet/tcp_var.h index 406adbc5604..22a448336eb 100644 --- a/sys/netinet/tcp_var.h +++ b/sys/netinet/tcp_var.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_var.h,v 1.54 2004/01/13 13:26:14 markus Exp $ */ +/* $OpenBSD: tcp_var.h,v 1.55 2004/01/14 13:38:21 markus Exp $ */ /* $NetBSD: tcp_var.h,v 1.17 1996/02/13 23:44:24 christos Exp $ */ /* @@ -268,6 +268,7 @@ struct syn_cache { #define SCF_DEAD 0x0004 /* this entry to be released */ #define SCF_SACK_PERMIT 0x0008 /* permit sack */ #define SCF_ECN_PERMIT 0x0010 /* permit ecn */ +#define SCF_SIGNATURE 0x0020 /* enforce tcp signatures */ struct mbuf *sc_ipopts; /* IP options */ u_int16_t sc_peermaxseg; |