diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2008-02-20 11:24:04 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2008-02-20 11:24:04 +0000 |
commit | dde0c99ae283c1cfe336d9c50cf9d2e6899b9ce7 (patch) | |
tree | af3f111965ebb6df9e261636a5085f9d48eb8246 /sys/netinet/tcp_var.h | |
parent | 42d50285dc0534294fbf138324bb71ceee907c35 (diff) |
when creating a response, use the correct TCP header instead of
relying on the mbuf chain layout; with claudio@ and krw@; ok henning@
Diffstat (limited to 'sys/netinet/tcp_var.h')
-rw-r--r-- | sys/netinet/tcp_var.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/tcp_var.h b/sys/netinet/tcp_var.h index cf2859b19d2..e3d7ab710cb 100644 --- a/sys/netinet/tcp_var.h +++ b/sys/netinet/tcp_var.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_var.h,v 1.84 2007/12/13 20:00:53 reyk Exp $ */ +/* $OpenBSD: tcp_var.h,v 1.85 2008/02/20 11:24:03 markus Exp $ */ /* $NetBSD: tcp_var.h,v 1.17 1996/02/13 23:44:24 christos Exp $ */ /* @@ -616,7 +616,7 @@ int tcp_output(struct tcpcb *); void tcp_pulloutofband(struct socket *, u_int, struct mbuf *, int); int tcp_reass(struct tcpcb *, struct tcphdr *, struct mbuf *, int *); void tcp_rscale(struct tcpcb *, u_long); -void tcp_respond(struct tcpcb *, caddr_t, struct mbuf *, tcp_seq, +void tcp_respond(struct tcpcb *, caddr_t, struct tcphdr *, tcp_seq, tcp_seq, int); void tcp_setpersist(struct tcpcb *); void tcp_slowtimo(void); |