about 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
commit44bec9d4ec5d3240b1c518ff11bfd3d8a19d2354 (patch)
tree57aea39e036f081ad3e4fb9a00f51f4a6d7ec15b
parentUse EV_SET (diff)
downloadtorus-44bec9d4ec5d3240b1c518ff11bfd3d8a19d2354.tar.gz
torus-44bec9d4ec5d3240b1c518ff11bfd3d8a19d2354.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.
Diffstat (limited to '')
-rw-r--r--server.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/server.c b/server.c
index b2b651b..ba45b30 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));
ref='/scooper/commit/server.h?h=1.2&id=56af4115c72d0ee03d7492390156211b2d18ffcb&follow=1'>Reverse order of X macro parameters for pages and keysJune McEnroe 2020-07-18Remove kcgi 0.11 compatibilityJune McEnroe 2020-07-17Filter networks with only private contextsJune McEnroe 2020-07-17Add export optionJune McEnroe 2020-07-17Add margin to inputsJune McEnroe 2020-07-16Don't write null terminator in stylesheet responseJune McEnroe 2020-07-16Remove sudo from make installJune McEnroe