diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2004-06-08 19:47:25 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2004-06-08 19:47:25 +0000 |
commit | b3f24646e2fb015bc166f8f92151871622fb9c02 (patch) | |
tree | b46f681348bf994fceacfb2f933bd16ccf03ac62 /sys/netinet/tcp_var.h | |
parent | 49f35b7ba3eab70964cebbc937c6eca40ec9ffe1 (diff) |
factor out md5 code; ok+tests henning@, djm@, hshoexer@
Diffstat (limited to 'sys/netinet/tcp_var.h')
-rw-r--r-- | sys/netinet/tcp_var.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/netinet/tcp_var.h b/sys/netinet/tcp_var.h index dbc9718f540..9ac219cc61d 100644 --- a/sys/netinet/tcp_var.h +++ b/sys/netinet/tcp_var.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_var.h,v 1.63 2004/04/25 04:34:05 markus Exp $ */ +/* $OpenBSD: tcp_var.h,v 1.64 2004/06/08 19:47:24 markus Exp $ */ /* $NetBSD: tcp_var.h,v 1.17 1996/02/13 23:44:24 christos Exp $ */ /* @@ -618,6 +618,8 @@ u_long tcp_seq_subtract(u_long, u_long ); #endif /* TCP_SACK */ #ifdef TCP_SIGNATURE int tcp_signature_apply(caddr_t, caddr_t, unsigned int); +int tcp_signature(struct tdb *, int, struct mbuf *, struct tcphdr *, + int, int, char *); #endif /* TCP_SIGNATURE */ void tcp_rndiss_init(void); tcp_seq tcp_rndiss_next(void); |