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;
40 char *term;
41 int ptyfd, ttyfd, ptymaster;
42 u_int row, col, xpixel, ypixel;
43 char tty[TTYSZ];
46 u_int display_number;
47 char *display;
48 u_int screen;
49 char *auth_display;
50 char *auth_proto;
74 void session_destroy_all(void (*)(Session *)); argument