Increase buffer size to 16k instead of 1k.

This commit is contained in:
Sam Hocevar 2016-02-06 17:44:35 +01:00
parent 31f320a74d
commit e365bf65f0

View File

@ -93,7 +93,7 @@ typedef struct {
/* Constants */
static int const RINETD_BUFFER_SIZE = 1024;
static int const RINETD_BUFFER_SIZE = 16384;
static int const RINETD_LISTEN_BACKLOG = 128;
#define RINETD_CONFIG_FILE "/etc/rinetd.conf"