diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2022-03-28 08:42:13 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2022-04-06 14:19:52 +0100 |
commit | 1c69a91c25654339a0e670ed5a1495d52b37eb8e (patch) | |
tree | a55101c3181c5a776e68833f032d16cd534fe444 /tmux.h | |
parent | 98de5784a0a35681b736dc11bb6758a08d428562 (diff) | |
download | rtmux-1c69a91c25654339a0e670ed5a1495d52b37eb8e.tar.gz rtmux-1c69a91c25654339a0e670ed5a1495d52b37eb8e.tar.bz2 rtmux-1c69a91c25654339a0e670ed5a1495d52b37eb8e.zip |
Add support for systemd socket activation (where systemd creates the Unix
domain socket for tmux rather than tmux creating it). Build with
--enable-systemd. From Julien Moutinho in GitHub issue 3119.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -2583,6 +2583,7 @@ int server_start(struct tmuxproc *, int, struct event_base *, int, char *); void server_update_socket(void); void server_add_accept(int); void printflike(1, 2) server_add_message(const char *, ...); +int server_create_socket(int, char **); /* server-client.c */ RB_PROTOTYPE(client_windows, client_window, entry, server_client_window_cmp); |