summaryrefslogtreecommitdiff
path: root/session.h
diff options
context:
space:
mode:
authordjm <djm>2001-10-12 01:35:04 +0000
committerdjm <djm>2001-10-12 01:35:04 +0000
commita524f72e0c67aa3f13e81210cb72a116ec250821 (patch)
treed56cd5de2274eb8610d5accc22a9ff654a9215cd /session.h
parent359e9c0632b54256fd2bbec39577d224d7209773 (diff)
downloadopenssh-a524f72e0c67aa3f13e81210cb72a116ec250821.tar.gz
- (djm) OpenBSD CVS Sync
- markus@cvs.openbsd.org 2001/10/10 22:18:47 [channels.c channels.h clientloop.c nchan.c serverloop.c] [session.c session.h] try to keep channels open until an exit-status message is sent. don't kill the login shells if the shells stdin/out/err is closed. this should now work: ssh -2n localhost 'exec > /dev/null 2>&1; sleep 10; exit 5'; echo ?
Diffstat (limited to 'session.h')
-rw-r--r--session.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/session.h b/session.h
index d2b0d936..6d5b8e69 100644
--- a/session.h
+++ b/session.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: session.h,v 1.12 2001/10/09 21:59:41 markus Exp $ */
+/* $OpenBSD: session.h,v 1.13 2001/10/10 22:18:47 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 *);
-void session_close_all(void);
+void session_destroy_all(void);
#endif