mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-12-25 18:14:53 +00:00
Correct TCP_OOSEQ_MAX_* opt.h documentation
This corrects documentation on TCP_OOSEQ_MAX_BYTES and _PBUFS to list their dependency on TCP_QUEUE_OOSEQ==1 (out of order sequence queueing enabled) rather than ==0 (disabled)
This commit is contained in:
parent
4b45baee10
commit
c9dff6b5aa
@ -1235,7 +1235,7 @@
|
||||
|
||||
/**
|
||||
* TCP_OOSEQ_MAX_BYTES: The maximum number of bytes queued on ooseq per pcb.
|
||||
* Default is 0 (no limit). Only valid for TCP_QUEUE_OOSEQ==0.
|
||||
* Default is 0 (no limit). Only valid for TCP_QUEUE_OOSEQ==1.
|
||||
*/
|
||||
#if !defined TCP_OOSEQ_MAX_BYTES || defined __DOXYGEN__
|
||||
#define TCP_OOSEQ_MAX_BYTES 0
|
||||
@ -1243,7 +1243,7 @@
|
||||
|
||||
/**
|
||||
* TCP_OOSEQ_MAX_PBUFS: The maximum number of pbufs queued on ooseq per pcb.
|
||||
* Default is 0 (no limit). Only valid for TCP_QUEUE_OOSEQ==0.
|
||||
* Default is 0 (no limit). Only valid for TCP_QUEUE_OOSEQ==1.
|
||||
*/
|
||||
#if !defined TCP_OOSEQ_MAX_PBUFS || defined __DOXYGEN__
|
||||
#define TCP_OOSEQ_MAX_PBUFS 0
|
||||
|
Loading…
Reference in New Issue
Block a user