diff options
author | tuexen <tuexen@FreeBSD.org> | 2015-06-20 08:25:27 +0000 |
---|---|---|
committer | tuexen <tuexen@FreeBSD.org> | 2015-06-20 08:25:27 +0000 |
commit | 103d48d60e51144677efde9f37ee95451df279b3 (patch) | |
tree | dd4bc6fee1b5b7ca088e686fafc159ee65aba9d3 /sys/netinet6/sctp6_usrreq.c | |
parent | 4aefd42d20938c97e197e74118a18aaef1b971ee (diff) | |
download | FreeBSD-src-103d48d60e51144677efde9f37ee95451df279b3.zip FreeBSD-src-103d48d60e51144677efde9f37ee95451df279b3.tar.gz |
MFC r284515:
Add FIB support for SCTP.
This fixes https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=200379
PR: 200379
Diffstat (limited to 'sys/netinet6/sctp6_usrreq.c')
-rw-r--r-- | sys/netinet6/sctp6_usrreq.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/netinet6/sctp6_usrreq.c b/sys/netinet6/sctp6_usrreq.c index e82ea77..536cc91 100644 --- a/sys/netinet6/sctp6_usrreq.c +++ b/sys/netinet6/sctp6_usrreq.c @@ -84,6 +84,7 @@ sctp6_input_with_port(struct mbuf **i_pak, int *offp, uint16_t port) #endif uint32_t mflowid; uint8_t mflowtype; + uint16_t fibnum; iphlen = *offp; if (SCTP_GET_PKT_VRFID(*i_pak, vrf_id)) { @@ -109,6 +110,7 @@ sctp6_input_with_port(struct mbuf **i_pak, int *offp, uint16_t port) (int)m->m_pkthdr.csum_flags, CSUM_BITS); mflowid = m->m_pkthdr.flowid; mflowtype = M_HASHTYPE_GET(m); + fibnum = M_GETFIB(m); SCTP_STAT_INCR(sctps_recvpackets); SCTP_STAT_INCR_COUNTER64(sctps_inpackets); /* Get IP, SCTP, and first chunk header together in the first mbuf. */ @@ -173,7 +175,7 @@ sctp6_input_with_port(struct mbuf **i_pak, int *offp, uint16_t port) compute_crc, #endif ecn_bits, - mflowtype, mflowid, + mflowtype, mflowid, fibnum, vrf_id, port); out: if (m) { |