summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/session.h
diff options
context:
space:
mode:
authormarkus <markus@openbsd.org>2000-04-06 08:55:22 +0000
committermarkus <markus@openbsd.org>2000-04-06 08:55:22 +0000
commit4f9037ccb7fe92e6a435e36639ba78d9cdc04383 (patch)
tree385aeed325676aef40dab9cb2fa471f9e7bdaae4 /usr.bin/ssh/session.h
parentsync (diff)
downloadwireguard-openbsd-4f9037ccb7fe92e6a435e36639ba78d9cdc04383.tar.xz
wireguard-openbsd-4f9037ccb7fe92e6a435e36639ba78d9cdc04383.zip
ssh2 server side, see README.openssh2; enable with 'sshd -2'
Diffstat (limited to 'usr.bin/ssh/session.h')
-rw-r--r--usr.bin/ssh/session.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/usr.bin/ssh/session.h b/usr.bin/ssh/session.h
index 2051b737d16..a3427bcb088 100644
--- a/usr.bin/ssh/session.h
+++ b/usr.bin/ssh/session.h
@@ -4,4 +4,11 @@
/* SSH1 */
void do_authenticated(struct passwd * pw);
+/* SSH2 */
+void do_authenticated2(void);
+int session_open(int id);
+void session_input_channel_req(int id, void *arg);
+void session_close_by_pid(pid_t pid, int status);
+void session_close_by_channel(int id, void *arg);
+
#endif