diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2022-10-18 15:58:06 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2022-10-18 15:58:06 +0100 |
commit | 5ce34add77fa3517a01e63b915c5f4e3241af470 (patch) | |
tree | ee5e13606e15ad4d8c2154e3334c8b2711dc34f8 /client.c | |
parent | 934f357149dba903f091237e7ea7c7ba78471614 (diff) | |
download | rtmux-5ce34add77fa3517a01e63b915c5f4e3241af470.tar.gz rtmux-5ce34add77fa3517a01e63b915c5f4e3241af470.tar.bz2 rtmux-5ce34add77fa3517a01e63b915c5f4e3241af470.zip |
Do not attempt to connect to the socket as a client if systemd is active, from
Julien Moutinho in GitHub issue 3345.
Diffstat (limited to 'client.c')
-rw-r--r-- | client.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -284,6 +284,12 @@ client_main(struct event_base *base, int argc, char **argv, uint64_t flags, log_debug("flags are %#llx", (unsigned long long)client_flags); /* Initialize the client socket and start the server. */ +#ifdef HAVE_SYSTEMD + if (systemd_activated()) { + /* socket-based activation, do not even try to be a client. */ + fd = server_start(client_proc, flags, base, 0, NULL); + } else +#endif fd = client_connect(base, socket_path, client_flags); if (fd == -1) { if (errno == ECONNREFUSED) { |