# HG changeset patch # Parent 6d010d842e81372d65146a71e289ac98d3f1fc3d Teach toe_4tuple_check() to deal with IPv6 4-tuples too. diff -r 6d010d842e81 sys/netinet/toecore.c --- a/sys/netinet/toecore.c Mon Jan 14 12:43:32 2013 -0800 +++ b/sys/netinet/toecore.c Tue Jan 15 11:43:02 2013 -0800 @@ -52,6 +52,7 @@ #include #include #include +#include #include #define TCPSTATES #include @@ -355,11 +356,14 @@ toe_4tuple_check(struct in_conninfo *inc { struct inpcb *inp; - if (inc->inc_flags & INC_ISIPV6) - return (ENOSYS); /* XXX: implement */ - - inp = in_pcblookup(&V_tcbinfo, inc->inc_faddr, inc->inc_fport, - inc->inc_laddr, inc->inc_lport, INPLOOKUP_WLOCKPCB, ifp); + if (inc->inc_flags & INC_ISIPV6) { + inp = in6_pcblookup(&V_tcbinfo, &inc->inc6_faddr, + inc->inc_fport, &inc->inc6_laddr, inc->inc_lport, + INPLOOKUP_WLOCKPCB, ifp); + } else { + inp = in_pcblookup(&V_tcbinfo, inc->inc_faddr, inc->inc_fport, + inc->inc_laddr, inc->inc_lport, INPLOOKUP_WLOCKPCB, ifp); + } if (inp != NULL) { INP_WLOCK_ASSERT(inp);