diff options
author | tuexen <tuexen@FreeBSD.org> | 2012-06-14 06:54:48 +0000 |
---|---|---|
committer | tuexen <tuexen@FreeBSD.org> | 2012-06-14 06:54:48 +0000 |
commit | e8af2861381f0efb48f7fbe22c15024d2f0cbe0d (patch) | |
tree | 832c543f2b46d4372a3097dc0c95719bfb27a97e /sys/netinet/sctp_indata.h | |
parent | a65a9620af9a7fc5136edbcf7488e62299d44e0c (diff) | |
download | FreeBSD-src-e8af2861381f0efb48f7fbe22c15024d2f0cbe0d.zip FreeBSD-src-e8af2861381f0efb48f7fbe22c15024d2f0cbe0d.tar.gz |
Pass flowid explicitly through the stack instead of taking it from
the mbuf chain at different places.
While there: Fix several bugs related to VRFs.
MFC after: 3 days
Diffstat (limited to 'sys/netinet/sctp_indata.h')
-rw-r--r-- | sys/netinet/sctp_indata.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/netinet/sctp_indata.h b/sys/netinet/sctp_indata.h index e5cde9c..9cb4d8a 100644 --- a/sys/netinet/sctp_indata.h +++ b/sys/netinet/sctp_indata.h @@ -113,7 +113,9 @@ void int sctp_process_data(struct mbuf **, int, int *, int, struct sctphdr *, struct sctp_inpcb *, struct sctp_tcb *, - struct sctp_nets *, uint32_t *); + struct sctp_nets *, uint32_t *, + uint8_t, uint32_t, + uint32_t, uint16_t); void sctp_slide_mapping_arrays(struct sctp_tcb *stcb); |