diff options
author | Damien Miller <djm@mindrot.org> | 2000-04-12 18:45:05 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2000-04-12 18:45:05 +1000 |
commit | efb4afe0265333ce554f699c2a19ae249dd8d1b5 (patch) | |
tree | 8fe5e0bb9791e7fa3d1788084ae669f7a9dcd2e0 /session.h | |
parent | 11e37f638d3cc064371521001eaeb2d75bfe4a8d (diff) |
- More large OpenBSD CVS updates:
- [auth.c auth.h servconf.c servconf.h serverloop.c session.c]
[session.h ssh.h sshd.c README.openssh2]
ssh2 server side, see README.openssh2; enable with 'sshd -2'
- [channels.c]
no adjust after close
- [sshd.c compat.c ]
interop w/ latest ssh.com windows client.
Diffstat (limited to 'session.h')
-rw-r--r-- | session.h | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -4,4 +4,11 @@ | |||
4 | /* SSH1 */ | 4 | /* SSH1 */ |
5 | void do_authenticated(struct passwd * pw); | 5 | void do_authenticated(struct passwd * pw); |
6 | 6 | ||
7 | /* SSH2 */ | ||
8 | void do_authenticated2(void); | ||
9 | int session_open(int id); | ||
10 | void session_input_channel_req(int id, void *arg); | ||
11 | void session_close_by_pid(pid_t pid, int status); | ||
12 | void session_close_by_channel(int id, void *arg); | ||
13 | |||
7 | #endif | 14 | #endif |