diff options
author | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2008-05-24 19:48:33 +0000 |
---|---|---|
committer | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2008-05-24 19:48:33 +0000 |
commit | 1253b7d2d25cd9bfbba59b451260cf9e1ce478dd (patch) | |
tree | 8ce714306f7f49a5396e765f7c396bf2be33e64d /sys/netinet/tcp_usrreq.c | |
parent | ec8b8e37b2177d2b6911ecc80da5c5211d200380 (diff) |
Remove {tcp/udp}6_usrreq(); Since the normal ones now
take a proc argument, theres no need for these, since
they are just wrappers.
OK claudio@
Diffstat (limited to 'sys/netinet/tcp_usrreq.c')
-rw-r--r-- | sys/netinet/tcp_usrreq.c | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/sys/netinet/tcp_usrreq.c b/sys/netinet/tcp_usrreq.c index c0918876e48..00997e16a02 100644 --- a/sys/netinet/tcp_usrreq.c +++ b/sys/netinet/tcp_usrreq.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_usrreq.c,v 1.98 2008/05/23 15:51:12 thib Exp $ */ +/* $OpenBSD: tcp_usrreq.c,v 1.99 2008/05/24 19:48:32 thib Exp $ */ /* $NetBSD: tcp_usrreq.c,v 1.20 1996/02/13 23:44:16 christos Exp $ */ /* @@ -125,19 +125,6 @@ struct inpcbtable tcbtable; int tcp_ident(void *, size_t *, void *, size_t, int); -#ifdef INET6 -int -tcp6_usrreq(so, req, m, nam, control, p) - struct socket *so; - int req; - struct mbuf *m, *nam, *control; - struct proc *p; -{ - - return tcp_usrreq(so, req, m, nam, control, p); -} -#endif - /* * Process a TCP user request for TCP tb. If this is a send request * then m is the mbuf chain of send data. If this is a timer expiration |