Lines Matching defs:Session
33 typedef struct Session Session; typedef
34 struct Session { struct
35 int used;
36 int self;
37 int next_unused;
38 struct passwd *pw;
39 Authctxt *authctxt;
40 pid_t pid;
41 int forced;
44 char *term;
45 int ptyfd, ttyfd, ptymaster;
46 u_int row, col, xpixel, ypixel;
47 char tty[TTYSZ];
50 u_int display_number;
51 char *display;
52 u_int screen;
53 char *auth_display;
77 void session_destroy_all(struct ssh *, void (*)(Session *)); argument