diff options
author | 2000-09-20 17:00:22 +0000 | |
---|---|---|
committer | 2000-09-20 17:00:22 +0000 | |
commit | 39b94094a22f24a827039933d795fcc2bc0bbe6c (patch) | |
tree | 81c642a2bc3841878b7fbc215117272e1717e9d6 /sys/netinet/tcp_var.h | |
parent | fix in_pcbrtentry (diff) | |
download | wireguard-openbsd-39b94094a22f24a827039933d795fcc2bc0bbe6c.tar.xz wireguard-openbsd-39b94094a22f24a827039933d795fcc2bc0bbe6c.zip |
correctly calculate mss
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 e4c25532abd..39c03b853d2 100644 --- a/sys/netinet/tcp_var.h +++ b/sys/netinet/tcp_var.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_var.h,v 1.30 2000/09/18 22:06:38 provos Exp $ */ +/* $OpenBSD: tcp_var.h,v 1.31 2000/09/20 17:00:23 provos Exp $ */ /* $NetBSD: tcp_var.h,v 1.17 1996/02/13 23:44:24 christos Exp $ */ /* @@ -343,6 +343,7 @@ int tcp6_input __P((struct mbuf **, int *, int)); #endif void tcp_input __P((struct mbuf *, ...)); int tcp_mss __P((struct tcpcb *, int)); +void tcp_mss_update __P((struct tcpcb *)); void tcp_mtudisc __P((struct inpcb *, int)); struct tcpcb * tcp_newtcpcb __P((struct inpcb *)); |