diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2004-01-13 13:26:15 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2004-01-13 13:26:15 +0000 |
commit | 49fb134781c0e49beca418a3ea4b43b807728a92 (patch) | |
tree | 74169cac51de0c03391faafff1d004aa0df85847 /sys/netinet/tcp_var.h | |
parent | e35dbdf6a9608250412b7815760889f6f2239f24 (diff) |
bring back the old TCP_SIGNATURE code from tcp_input.c rev 1.45
and make it compile (does not work yet); ok deraadt@
Diffstat (limited to 'sys/netinet/tcp_var.h')
-rw-r--r-- | sys/netinet/tcp_var.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netinet/tcp_var.h b/sys/netinet/tcp_var.h index ec63d956928..406adbc5604 100644 --- a/sys/netinet/tcp_var.h +++ b/sys/netinet/tcp_var.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_var.h,v 1.53 2004/01/07 19:20:14 markus Exp $ */ +/* $OpenBSD: tcp_var.h,v 1.54 2004/01/13 13:26:14 markus Exp $ */ /* $NetBSD: tcp_var.h,v 1.17 1996/02/13 23:44:24 christos Exp $ */ /* @@ -493,8 +493,8 @@ struct tcpcb * tcp_disconnect(struct tcpcb *); struct tcpcb * tcp_drop(struct tcpcb *, int); -void tcp_dooptions(struct tcpcb *, u_char *, int, struct tcphdr *, - struct tcp_opt_info *); +int tcp_dooptions(struct tcpcb *, u_char *, int, struct tcphdr *, + struct mbuf *, int, struct tcp_opt_info *); void tcp_drain(void); void tcp_init(void); #if defined(INET6) && !defined(TCP6) |