mirror of https://github.com/m-labs/artiq.git
runtime: increase lwip TCP_SND_QUEUELEN (closes #82)
This commit is contained in:
parent
d02d40871e
commit
8d1663394b
|
@ -117,9 +117,8 @@ a lot of data that needs to be copied, this should be set high. */
|
|||
/* TCP sender buffer space (bytes). */
|
||||
#define TCP_SND_BUF 32 * 1024
|
||||
|
||||
/* TCP sender buffer space (pbufs). This must be at least = 2 *
|
||||
TCP_SND_BUF/TCP_MSS for things to work. */
|
||||
#define TCP_SND_QUEUELEN 2 * TCP_SND_BUF/TCP_MSS
|
||||
/* TCP sender buffer space (pbufs). */
|
||||
#define TCP_SND_QUEUELEN 3 * TCP_SND_BUF/TCP_MSS
|
||||
|
||||
/* TCP receive window. */
|
||||
#define TCP_WND 16 * 1024
|
||||
|
|
Loading…
Reference in New Issue