summaryrefslogtreecommitdiff
path: root/sshd.c
diff options
context:
space:
mode:
authorMichael Biebl <biebl@debian.org>2015-12-21 16:08:47 +0000
committerColin Watson <cjwatson@debian.org>2020-02-21 12:10:36 +0000
commita208834b2d1811dac7054d7fdcdd04672f8b19f6 (patch)
tree516663911b9ce2649973957bd359aae77dc82b8a /sshd.c
parent63da84c3570afb4fa6bab38fdac3e9af45d0ec54 (diff)
Add systemd readiness notification support
Bug-Debian: https://bugs.debian.org/778913 Forwarded: no Last-Update: 2017-08-22 Patch-Name: systemd-readiness.patch
Diffstat (limited to 'sshd.c')
-rw-r--r--sshd.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/sshd.c b/sshd.c
index da876a900..c069505a0 100644
--- a/sshd.c
+++ b/sshd.c
@@ -85,6 +85,10 @@
85#include <prot.h> 85#include <prot.h>
86#endif 86#endif
87 87
88#ifdef HAVE_SYSTEMD
89#include <systemd/sd-daemon.h>
90#endif
91
88#include "xmalloc.h" 92#include "xmalloc.h"
89#include "ssh.h" 93#include "ssh.h"
90#include "ssh2.h" 94#include "ssh2.h"
@@ -2027,6 +2031,11 @@ main(int ac, char **av)
2027 } 2031 }
2028 } 2032 }
2029 2033
2034#ifdef HAVE_SYSTEMD
2035 /* Signal systemd that we are ready to accept connections */
2036 sd_notify(0, "READY=1");
2037#endif
2038
2030 /* Accept a connection and return in a forked child */ 2039 /* Accept a connection and return in a forked child */
2031 server_accept_loop(&sock_in, &sock_out, 2040 server_accept_loop(&sock_in, &sock_out,
2032 &newsock, config_s); 2041 &newsock, config_s);