sctplab / sctp-idata

Developing support for draft-ietf-tsvwg-sctp-ndata
BSD 2-Clause "Simplified" License
6 stars 3 forks source link

feature/maxchunks unlimited #21

Open msvoelker opened 4 years ago

msvoelker commented 4 years ago

src/netinet/sctp_output.c Modified the checks if the number of chunks in the queue hit the limit sctp_max_chunks_on_queue, such that sctp_max_chunks_on_queue=0 is interpreted as unlimited.

tuexen commented 4 years ago

Don't you need a similar dance also in the other places where SCTP_BASE_SYSCTL(sctp_max_chunks_on_queue) is used?

msvoelker commented 4 years ago

Good point. I made similar changes in sctp_indata.c and sctp_input.c.