summaryrefslogtreecommitdiff
path: root/session.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2002-03-13 12:47:54 +1100
committerDamien Miller <djm@mindrot.org>2002-03-13 12:47:54 +1100
commit646e7cf3d7e7d4231c2d97d27c09fe5fe1d749e2 (patch)
treea693368c47d2d044514878fbb1516f87b487f78b /session.h
parent29bdd2c9bca2737e7a246ed50fd827a6ccba0c61 (diff)
downloadopenssh-git-646e7cf3d7e7d4231c2d97d27c09fe5fe1d749e2.tar.gz
Import of Niels Provos' 20020312 ssh-complete.diff
PAM, Cygwin and OSF SIA will not work for sure
Diffstat (limited to 'session.h')
-rw-r--r--session.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/session.h b/session.h
index ec8284a5..e3123bee 100644
--- a/session.h
+++ b/session.h
@@ -26,6 +26,32 @@
#ifndef SESSION_H
#define SESSION_H
+#define TTYSZ 64
+typedef struct Session Session;
+struct Session {
+ int used;
+ int self;
+ struct passwd *pw;
+ Authctxt *authctxt;
+ pid_t pid;
+ /* tty */
+ char *term;
+ int ptyfd, ttyfd, ptymaster;
+ int row, col, xpixel, ypixel;
+ char tty[TTYSZ];
+ /* X11 */
+ int display_number;
+ char *display;
+ int screen;
+ char *auth_display;
+ char *auth_proto;
+ char *auth_data;
+ int single_connection;
+ /* proto 2 */
+ int chanid;
+ int is_subsystem;
+};
+
void do_authenticated(Authctxt *);
int session_open(Authctxt*, int);
@@ -34,4 +60,6 @@ void session_close_by_pid(pid_t, int);
void session_close_by_channel(int, void *);
void session_destroy_all(void);
+Session *session_new(void);
+void session_close(Session *);
#endif