diff options
-rw-r--r-- | sshd.c | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -1931,6 +1931,16 @@ main(int ac, char **av) | |||
1931 | } | 1931 | } |
1932 | } | 1932 | } |
1933 | 1933 | ||
1934 | if (getenv("SSH_SIGSTOP")) { | ||
1935 | /* Tell service supervisor that we are ready. */ | ||
1936 | kill(getpid(), SIGSTOP); | ||
1937 | /* The service supervisor only ever expects a single | ||
1938 | * STOP signal, so do not ever signal it again, even | ||
1939 | * in the case of a re-exec or future children. | ||
1940 | */ | ||
1941 | unsetenv("SSH_SIGSTOP"); | ||
1942 | } | ||
1943 | |||
1934 | /* Accept a connection and return in a forked child */ | 1944 | /* Accept a connection and return in a forked child */ |
1935 | server_accept_loop(&sock_in, &sock_out, | 1945 | server_accept_loop(&sock_in, &sock_out, |
1936 | &newsock, config_s); | 1946 | &newsock, config_s); |