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_input.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_input.h')
-rw-r--r-- | sys/netinet/sctp_input.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/netinet/sctp_input.h b/sys/netinet/sctp_input.h index afddc84..aff39de 100644 --- a/sys/netinet/sctp_input.h +++ b/sys/netinet/sctp_input.h @@ -39,8 +39,11 @@ __FBSDID("$FreeBSD$"); #if defined(_KERNEL) || defined(__Userspace__) void sctp_common_input_processing(struct mbuf **, int, int, int, - struct sctphdr *, struct sctp_chunkhdr *, struct sctp_inpcb *, - struct sctp_tcb *, struct sctp_nets *, uint8_t, uint32_t, uint16_t); + struct sctphdr *, struct sctp_chunkhdr *, + struct sctp_inpcb *, struct sctp_tcb *, + struct sctp_nets *, uint8_t, + uint8_t, uint32_t, + uint32_t, uint16_t); struct sctp_stream_reset_out_request * sctp_find_stream_reset(struct sctp_tcb *stcb, uint32_t seq, |