Lines Matching defs:clientsession
208 struct clientsession { struct
210 mp_int *dh_e, *dh_x; /* Used during KEX */
211 cli_kex_state kex_state; /* Used for progressing KEX */
212 cli_state state; /* Used to progress auth/channelsession etc */
213 unsigned donefirstkex : 1; /* Set when we set sentnewkeys, never reset */
215 int tty_raw_mode; /* Whether we're in raw mode (and have to clean up) */
216 struct termios saved_tio;
217 int stdincopy;
218 int stdinflags;
219 int stdoutcopy;
220 int stdoutflags;
221 int stderrcopy;
222 int stderrflags;
224 int winchange; /* Set to 1 when a windowchange signal happens */
226 int lastauthtype; /* either AUTH_TYPE_PUBKEY or AUTH_TYPE_PASSWORD,
229 int auth_interact_failed; /* flag whether interactive auth can still
253 extern struct clientsession cli_ses; argument