summaryrefslogtreecommitdiff
path: root/zebra/zserv.c
diff options
context:
space:
mode:
authorpaul <paul>2005-01-05 08:30:35 +0000
committerpaul <paul>2005-01-05 08:30:35 +0000
commit865b852cbf82f2da6cd3908e76176ceb6ad33d26 (patch)
treed34f9664feb19e614e3e64609e1c3a9329e8f2f8 /zebra/zserv.c
parenta24a7e1b9e145d4c855d0aa4d919a79f598c645b (diff)
2005-01-05 Paul Jakma <paul@dishone.st>
* zserv.c: (zebra_accept) Comment out setting of socket to NONBLOCK for now, as we dont actually deal with with resending.... See bugzilla #122, fix from wawa@yandex-team.ru (Vladimir Ivanov). * kernel_socket.c: (routing_socket) ditto.
Diffstat (limited to 'zebra/zserv.c')
-rw-r--r--zebra/zserv.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/zebra/zserv.c b/zebra/zserv.c
index 47eb49a4..10616b41 100644
--- a/zebra/zserv.c
+++ b/zebra/zserv.c
@@ -1374,10 +1374,14 @@ zebra_accept (struct thread *thread)
}
/* Make client socket non-blocking. */
-
+ /* XXX: We dont requeue failed writes, so this leads to inconsistencies.
+ * for now socket must remain blocking, regardless of risk of deadlocks.
+ */
+ /*
val = fcntl (client_sock, F_GETFL, 0);
fcntl (client_sock, F_SETFL, (val | O_NONBLOCK));
-
+ */
+
/* Create new zebra client. */
zebra_client_create (client_sock);