Revision bc246ff1
src/net_helper-ml.c | ||
---|---|---|
362 | 362 |
|
363 | 363 |
int verbosity = DCLOG_ERROR; |
364 | 364 |
|
365 |
int bucketsize = 80; /* this allows a burst of 80kB */
|
|
366 |
int rate = 1220; /* 10Mbit/s */
|
|
367 |
int queuesize = 1000; /* up to 1000kB of data will be stored in the shaper transmission queue */
|
|
368 |
int RTXqueuesize = 1000; /* up to 1000kB of data will be stored in the shaper retransmission queue */
|
|
369 |
double RTXholtdingtime = 1.0; |
|
365 |
int bucketsize = 80000; /* this allows a burst of 80000 Bytes [Bytes] */
|
|
366 |
int rate = 1250000; /* 10Mbit/s [bits/s]*/
|
|
367 |
int queuesize = 1000000; /* up to 1MB of data will be stored in the shaper transmission queue [Bytes]*/
|
|
368 |
int RTXqueuesize = 1000000; /* up to 1 MB of data will be stored in the shaper retransmission queue [Bytes] */
|
|
369 |
double RTXholtdingtime = 1.0; /* [seconds] */
|
|
370 | 370 |
|
371 | 371 |
#ifndef WIN32 |
372 | 372 |
signal(SIGPIPE, SIG_IGN); // workaround for a known issue in libevent2 with SIGPIPE on TPC connections |
Also available in: Unified diff