summaryrefslogtreecommitdiff
path: root/sys/netinet/tcp_input.c
diff options
context:
space:
mode:
authorYoshinobu Inoue <shin@FreeBSD.org>1999-12-22 19:13:38 +0000
committerYoshinobu Inoue <shin@FreeBSD.org>1999-12-22 19:13:38 +0000
commit6a800098cc0778c9618a89f858021624722374bd (patch)
tree9cd3718d0c142edcd3154715cf1b5c93cd5c0d82 /sys/netinet/tcp_input.c
parent2e636eed154504de1062c0a338b1f3f78c7ac4a0 (diff)
Notes
Diffstat (limited to 'sys/netinet/tcp_input.c')
-rw-r--r--sys/netinet/tcp_input.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c
index 33a478c3852c..9605f7f1193d 100644
--- a/sys/netinet/tcp_input.c
+++ b/sys/netinet/tcp_input.c
@@ -273,10 +273,11 @@ present:
* protocol specification dated September, 1981 very closely.
*/
void
-tcp_input(m, iphlen)
+tcp_input(m, off0, proto)
register struct mbuf *m;
- int iphlen;
+ int off0, proto;
{
+ int iphlen = off0;
register struct tcpiphdr *ti;
register struct inpcb *inp;
u_char *optp = NULL;