diff options
author | 2000-09-19 03:20:57 +0000 | |
---|---|---|
committer | 2000-09-19 03:20:57 +0000 | |
commit | b1efc16cc7269ac20f093258bf32e7f04de88675 (patch) | |
tree | 1dd1ea9ef2ebbbb7d98c087cc8f5744fd6bb8052 /sys/netinet/tcp_usrreq.c | |
parent | SPD-driven IPsec. (diff) | |
download | wireguard-openbsd-b1efc16cc7269ac20f093258bf32e7f04de88675.tar.xz wireguard-openbsd-b1efc16cc7269ac20f093258bf32e7f04de88675.zip |
Lots and lots of changes.
Diffstat (limited to 'sys/netinet/tcp_usrreq.c')
-rw-r--r-- | sys/netinet/tcp_usrreq.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/sys/netinet/tcp_usrreq.c b/sys/netinet/tcp_usrreq.c index c0646e89a2e..bea80fb06f2 100644 --- a/sys/netinet/tcp_usrreq.c +++ b/sys/netinet/tcp_usrreq.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_usrreq.c,v 1.46 2000/07/11 16:53:22 provos Exp $ */ +/* $OpenBSD: tcp_usrreq.c,v 1.47 2000/09/19 03:20:59 angelos Exp $ */ /* $NetBSD: tcp_usrreq.c,v 1.20 1996/02/13 23:44:16 christos Exp $ */ /* @@ -82,10 +82,6 @@ didn't get a copy, you may request one from <license@ipv6.nrl.navy.mil>. #include <netinet/tcp_debug.h> #include <dev/rndvar.h> -#ifdef IPSEC -extern int check_ipsec_policy __P((struct inpcb *, u_int32_t)); -#endif - /* * TCP protocol interface to socket abstraction. */ @@ -393,9 +389,7 @@ tcp_usrreq(so, req, m, nam, control) */ case PRU_SEND: #ifdef IPSEC - error = check_ipsec_policy(inp, 0); - if (error) - break; + /* XXX Find IPsec TDB */ #endif sbappend(&so->so_snd, m); error = tcp_output(tp); |