mirror of
https://git.FreeBSD.org/src.git
synced 2024-11-29 08:08:37 +00:00
Improve consistency.
MFC after: 1 week
This commit is contained in:
parent
ef9095c72a
commit
fcbfdc0ab6
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=363012
@ -5103,8 +5103,8 @@ sctp_process_control(struct mbuf *m, int iphlen, int *offset, int length,
|
||||
if (stcb->asoc.prsctp_supported == 0) {
|
||||
goto unknown_chunk;
|
||||
}
|
||||
if (((asoc->idata_supported == 1) && (ch->chunk_type == SCTP_FORWARD_CUM_TSN)) ||
|
||||
((asoc->idata_supported == 0) && (ch->chunk_type == SCTP_IFORWARD_CUM_TSN))) {
|
||||
if (((stcb->asoc.idata_supported == 1) && (ch->chunk_type == SCTP_FORWARD_CUM_TSN)) ||
|
||||
((stcb->asoc.idata_supported == 0) && (ch->chunk_type == SCTP_IFORWARD_CUM_TSN))) {
|
||||
if (ch->chunk_type == SCTP_FORWARD_CUM_TSN) {
|
||||
SCTP_SNPRINTF(msg, sizeof(msg), "%s", "FORWARD-TSN chunk received when I-FORWARD-TSN was negotiated");
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user