diff options
author | Michael Tuexen <tuexen@FreeBSD.org> | 2021-06-27 18:14:48 +0000 |
---|---|---|
committer | Michael Tuexen <tuexen@FreeBSD.org> | 2021-07-13 18:28:48 +0000 |
commit | 6a4f29a3c48dd709e68c00b4925ded4bebadd0b3 (patch) | |
tree | e2cdb9fef32d963e6de2cfe07d3d1220bc0cf5d9 /sys/netinet/sctp_pcb.h | |
parent | 24df96b642531eb62572599d28f932590be9ba20 (diff) |
sctp: initialize sequence numbers for ECN correctly
Reported by: Junseok Yang (for the userland stack)
(cherry picked from commit c7f048ab3532a9f081addd6da0adf96f25271de8)
Diffstat (limited to 'sys/netinet/sctp_pcb.h')
-rw-r--r-- | sys/netinet/sctp_pcb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/sctp_pcb.h b/sys/netinet/sctp_pcb.h index 08ca30a45803..c978e8c72b42 100644 --- a/sys/netinet/sctp_pcb.h +++ b/sys/netinet/sctp_pcb.h @@ -573,8 +573,8 @@ void sctp_inpcb_free(struct sctp_inpcb *, int, int); struct sctp_tcb * sctp_aloc_assoc(struct sctp_inpcb *, struct sockaddr *, - int *, uint32_t, uint32_t, uint16_t, uint16_t, struct thread *, - int); + int *, uint32_t, uint32_t, uint32_t, uint16_t, uint16_t, + struct thread *, int); int sctp_free_assoc(struct sctp_inpcb *, struct sctp_tcb *, int, int); |