summaryrefslogtreecommitdiff
path: root/zebra/zserv.c
diff options
context:
space:
mode:
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);