blob: a3427bcb08880154e07014666012c0084efc0513 [file] [log] [blame]
Damien Millerb38eff82000-04-01 11:09:21 +10001#ifndef SESSION_H
2#define SESSION_H
3
4/* SSH1 */
5void do_authenticated(struct passwd * pw);
6
Damien Millerefb4afe2000-04-12 18:45:05 +10007/* SSH2 */
8void do_authenticated2(void);
9int session_open(int id);
10void session_input_channel_req(int id, void *arg);
11void session_close_by_pid(pid_t pid, int status);
12void session_close_by_channel(int id, void *arg);
13
Damien Millerb38eff82000-04-01 11:09:21 +100014#endif