summary refs log tree commit diff homepage
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-07-24 16:57:34 -0400
committerJune McEnroe <june@causal.agency>2018-07-24 16:57:34 -0400
commitf4da47cb0ee659472b563b9e6443663c62a69996 (patch)
tree97eb0deca871b9a177308da354a4472b000981d6
parentUse EV_SET (diff)
downloadtorus-f4da47cb0ee659472b563b9e6443663c62a69996.tar.gz
torus-f4da47cb0ee659472b563b9e6443663c62a69996.zip
Do not set non-blocking on client sockets
On NetBSD, the send buffer seems to only be 4096 bytes, so sending
SERVER_TILE would get cut short. Just not setting non-blocking allows
messages to properly get through and *seems* to have no adverse effect.
-rw-r--r--server.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/server.c b/server.c
index 89ba03c..f34c802 100644
--- a/server.c
+++ b/server.c
@@ -350,7 +350,6 @@ int main() {
 		if (!event.udata) {
 			int fd = accept(server, NULL, NULL);
 			if (fd < 0) err(EX_IOERR, "accept");
-			fcntl(fd, F_SETFL, O_NONBLOCK);
 
 			int on = 1;
 			error = setsockopt(fd, SOL_SOCKET, SO_NOSIGPIPE, &on, sizeof(on));