aboutsummaryrefslogtreecommitdiff
path: root/src/conversation/gnunet-service-conversation.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/conversation/gnunet-service-conversation.c')
-rw-r--r--src/conversation/gnunet-service-conversation.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/conversation/gnunet-service-conversation.c b/src/conversation/gnunet-service-conversation.c
index fdaa2999c..10f169105 100644
--- a/src/conversation/gnunet-service-conversation.c
+++ b/src/conversation/gnunet-service-conversation.c
@@ -1574,10 +1574,11 @@ run (void *cls,
1574 } 1574 }
1575 nc = GNUNET_SERVER_notification_context_create (server, 16); 1575 nc = GNUNET_SERVER_notification_context_create (server, 16);
1576 GNUNET_SERVER_add_handlers (server, server_handlers); 1576 GNUNET_SERVER_add_handlers (server, server_handlers);
1577 GNUNET_SERVER_disconnect_notify (server, &handle_client_disconnect, NULL); 1577 GNUNET_SERVER_disconnect_notify (server,
1578 GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, 1578 &handle_client_disconnect,
1579 &do_shutdown, 1579 NULL);
1580 NULL); 1580 GNUNET_SCHEDULER_add_shutdown (&do_shutdown,
1581 NULL);
1581} 1582}
1582 1583
1583 1584