diff options
author | 2001-10-09 21:59:41 +0000 | |
---|---|---|
committer | 2001-10-09 21:59:41 +0000 | |
commit | a4098d30059b08398a22d7fe28f8de10486d40ef (patch) | |
tree | a6509a754f24e24c5eb7190fb26ce8662b2440aa /usr.bin/ssh/session.h | |
parent | no more NBUF= (diff) | |
download | wireguard-openbsd-a4098d30059b08398a22d7fe28f8de10486d40ef.tar.xz wireguard-openbsd-a4098d30059b08398a22d7fe28f8de10486d40ef.zip |
simplify session close: no more delayed session_close, no more blocking wait() calls.
Diffstat (limited to 'usr.bin/ssh/session.h')
-rw-r--r-- | usr.bin/ssh/session.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/session.h b/usr.bin/ssh/session.h index a04fa6f2bcc..d2b0d936409 100644 --- a/usr.bin/ssh/session.h +++ b/usr.bin/ssh/session.h @@ -1,4 +1,4 @@ -/* $OpenBSD: session.h,v 1.11 2001/07/02 13:59:15 markus Exp $ */ +/* $OpenBSD: session.h,v 1.12 2001/10/09 21:59:41 markus Exp $ */ /* * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved. @@ -32,6 +32,6 @@ int session_open(Authctxt*, int); void session_input_channel_req(int, void *); void session_close_by_pid(pid_t, int); void session_close_by_channel(int, void *); -int session_have_children(void); +void session_close_all(void); #endif |