diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-08 08:14:42 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-08 08:14:42 +0000 |
commit | 6963f5f48ed68cb42b92e40c84014bd12cd377fc (patch) | |
tree | c2abdd80665f8494280a65417a9c21156ff41125 /src/server.h | |
parent | Adding upstream version 1.7.3. (diff) | |
download | ttyd-upstream/1.7.7.tar.xz ttyd-upstream/1.7.7.zip |
Adding upstream version 1.7.7.upstream/1.7.7upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/server.h')
-rw-r--r-- | src/server.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/server.h b/src/server.h index 794965a..e13d632 100644 --- a/src/server.h +++ b/src/server.h @@ -59,7 +59,7 @@ struct pss_tty { typedef struct { struct pss_tty *pss; bool ws_closed; -} pty_ctx_t ; +} pty_ctx_t; struct server { int client_count; // client count @@ -74,10 +74,11 @@ struct server { int sig_code; // close signal char sig_name[20]; // human readable signal string bool url_arg; // allow client to send cli arguments in URL - bool readonly; // whether not allow clients to write to the TTY + bool writable; // whether clients to write to the TTY bool check_origin; // whether allow websocket connection from different origin int max_clients; // maximum clients to support bool once; // whether accept only one client and exit on disconnection + bool exit_no_conn; // whether exit on all clients disconnection char socket_path[255]; // UNIX domain socket path char terminal_type[30]; // terminal type to report |