Lines Matching defs:Session
30 typedef struct Session Session; typedef
31 struct Session { struct
32 int used;
33 int self;
34 int next_unused;
35 struct passwd *pw;
36 Authctxt *authctxt;
37 pid_t pid;
38 int forced;
41 char *term;
42 int ptyfd, ttyfd, ptymaster;
43 u_int row, col, xpixel, ypixel;
44 char tty[TTYSZ];
47 u_int display_number;
48 char *display;
49 u_int screen;
50 char *auth_display;
74 void session_destroy_all(struct ssh *, void (*)(Session *)); argument