summaryrefslogtreecommitdiffstats
path: root/src/protocol.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/protocol.c')
-rw-r--r--src/protocol.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/protocol.c b/src/protocol.c
index 3a53f96..53e65d4 100644
--- a/src/protocol.c
+++ b/src/protocol.c
@@ -379,8 +379,8 @@ int callback_tty(struct lws *wsi, enum lws_callback_reasons reason, void *user,
}
}
- if (server->once && server->client_count == 0) {
- lwsl_notice("exiting due to the --once option.\n");
+ if ((server->once || server->exit_no_conn) && server->client_count == 0) {
+ lwsl_notice("exiting due to the --once/--exit-no-conn option.\n");
force_exit = true;
lws_cancel_service(context);
exit(0);