aboutsummaryrefslogtreecommitdiff
path: root/include/connection.h
diff options
context:
space:
mode:
authorKenny Levinsen <kl@kl.wtf>2020-08-01 23:09:35 +0200
committerKenny Levinsen <kl@kl.wtf>2020-08-01 23:13:44 +0200
commit2be0826959c68aa0dd756ee4437db1883887d8ce (patch)
tree4c9b89c122ff2a7e7168d81ab5f2ddca2b7e2cdb /include/connection.h
parent7252558689827a095aa70ee6f30175e2e73eb36b (diff)
connection: Shrink buffers from 1KB to 256B each
Diffstat (limited to 'include/connection.h')
-rw-r--r--include/connection.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/connection.h b/include/connection.h
index 6c57901..3e15403 100644
--- a/include/connection.h
+++ b/include/connection.h
@@ -4,9 +4,9 @@
#include <stddef.h>
#include <stdint.h>
-#define CONNECTION_BUFFER_SIZE 1024
+#define CONNECTION_BUFFER_SIZE 256
-#define MAX_FDS_OUT 8
+#define MAX_FDS (CONNECTION_BUFFER_SIZE / sizeof(int))
struct connection_buffer {
uint32_t head, tail;