summaryrefslogtreecommitdiffstats
path: root/session.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2002-03-13 03:19:42 +0100
committerDamien Miller <djm@mindrot.org>2002-03-13 03:19:42 +0100
commit3a5b0233306a3db3a5db5b9ddc187c55e9b251f4 (patch)
tree86478addb63771a9a1be0e13cfbdea9f964f963a /session.h
parentThat shouldn't be here yet (diff)
downloadopenssh-3a5b0233306a3db3a5db5b9ddc187c55e9b251f4.tar.xz
openssh-3a5b0233306a3db3a5db5b9ddc187c55e9b251f4.zip
Stupid djm commits experimental code to head instead of branch
revert
Diffstat (limited to 'session.h')
-rw-r--r--session.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/session.h b/session.h
index e3123beed..ec8284a5f 100644
--- a/session.h
+++ b/session.h
@@ -26,32 +26,6 @@
#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);
@@ -60,6 +34,4 @@ 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