Skip to content
Snippets Groups Projects
Commit e9ecac0d authored by Marek Vavrusa's avatar Marek Vavrusa
Browse files

Increased networking stack buffer sizes to accomodate I/O on faster networks.

parent 941aa5be
No related branches found
No related tags found
No related merge requests found
......@@ -113,8 +113,8 @@ static int server_init_iface(iface_t *new_if, conf_iface_t *cfg_if)
{
/* Initialize interface. */
char errbuf[128];
int opt = 1024 * 256;
int snd_opt = 1024 * 8;
int opt = 1024 * 1024;
int snd_opt = 1024 * 1024;
memset(new_if, 0, sizeof(iface_t));
/* Create UDP socket. */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment