comparison svr-session.c @ 1782:a6da10ac64b5 fuzz

fuzz: make postauth set authdone properly
author Matt Johnston <matt@ucc.asn.au>
date Thu, 03 Dec 2020 22:18:51 +0800
parents 435cfb9ec96e
children 42745af83b7d
comparison
equal deleted inserted replaced
1781:bf1912d2d6e9 1782:a6da10ac64b5
193 kexfirstinitialise(); /* initialise the kex state */ 193 kexfirstinitialise(); /* initialise the kex state */
194 194
195 /* start off with key exchange */ 195 /* start off with key exchange */
196 send_msg_kexinit(); 196 send_msg_kexinit();
197 197
198 #if DROPBEAR_FUZZ
199 if (fuzz.fuzzing) {
200 fuzz_svr_hook_preloop();
201 }
202 #endif
203
198 /* Run the main for loop. NULL is for the dispatcher - only the client 204 /* Run the main for loop. NULL is for the dispatcher - only the client
199 * code makes use of it */ 205 * code makes use of it */
200 session_loop(svr_chansess_checksignal); 206 session_loop(svr_chansess_checksignal);
201 207
202 /* Not reached */ 208 /* Not reached */