diff options
| author | 2008-05-24 19:48:32 +0000 | |
|---|---|---|
| committer | 2008-05-24 19:48:32 +0000 | |
| commit | cd8435aacf4a216ec088b930893afb9220e17566 (patch) | |
| tree | 541cda700565e30255ce0ac80520856dd724a1e7 /sys/netinet/tcp_usrreq.c | |
| parent | - Enable userland to read(2) video stream from /dev/video. (diff) | |
| download | wireguard-openbsd-cd8435aacf4a216ec088b930893afb9220e17566.tar.xz wireguard-openbsd-cd8435aacf4a216ec088b930893afb9220e17566.zip | |
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 |
