diff options
| author | Jeffrey Hsu <hsu@FreeBSD.org> | 2002-06-14 08:35:21 +0000 |
|---|---|---|
| committer | Jeffrey Hsu <hsu@FreeBSD.org> | 2002-06-14 08:35:21 +0000 |
| commit | 3ce144ea8813e31b5ad0055a049a1c21163fe38d (patch) | |
| tree | 4544f6f0f46695f374bc2a22ee6af0eecc9a671f /sys/netinet/tcp_var.h | |
| parent | 85f6c317eaba505a515597b930b9e87a13ab81c3 (diff) | |
Notes
Diffstat (limited to 'sys/netinet/tcp_var.h')
| -rw-r--r-- | sys/netinet/tcp_var.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/sys/netinet/tcp_var.h b/sys/netinet/tcp_var.h index bce5d29637d8..a58bdf5e65fc 100644 --- a/sys/netinet/tcp_var.h +++ b/sys/netinet/tcp_var.h @@ -451,12 +451,15 @@ void tcp_init(void); void tcp_input(struct mbuf *, int); void tcp_mss(struct tcpcb *, int); int tcp_mssopt(struct tcpcb *); -void tcp_drop_syn_sent(struct inpcb *, int); -void tcp_mtudisc(struct inpcb *, int); +struct inpcb * + tcp_drop_syn_sent(struct inpcb *, int); +struct inpcb * + tcp_mtudisc(struct inpcb *, int); struct tcpcb * tcp_newtcpcb(struct inpcb *); int tcp_output(struct tcpcb *); -void tcp_quench(struct inpcb *, int); +struct inpcb * + tcp_quench(struct inpcb *, int); void tcp_respond(struct tcpcb *, void *, struct tcphdr *, struct mbuf *, tcp_seq, tcp_seq, int); struct rtentry * |
