Lines Matching full:cutthrough
8 + BIO_printf(bio_err," -cutthrough - enable 1-RTT full-handshake for strong ciphers\n");
16 + int cutthrough=0;
24 + else if (strcmp(*argv,"-cutthrough") == 0)
25 + cutthrough=1;
33 + /* Enable handshake cutthrough for client connections using
35 + if (cutthrough)
76 + && s->s3->previous_server_finished_len == 0 /* no cutthrough on renegotiation (would complicate the state machine) */
206 + return (!s->server && /* cutthrough only applies to clients */
209 + s->s3->in_read_app_data == 0 && /* cutthrough only applies to write() */
210 + (SSL_get_mode((SSL*)s) & SSL_MODE_HANDSHAKE_CUTTHROUGH) && /* cutthrough enabled */
227 + fprintf(stderr," -cutthrough - enable 1-RTT full-handshake for strong ciphers\n");
235 + int cutthrough = 0;
243 + else if (strcmp(*argv, "-cutthrough") == 0)
245 + cutthrough = 1;
255 + if (cutthrough)
271 +echo test sslv2/sslv3 with both client and server authentication and handshake cutthrough
272 +$ssltest -server_auth -client_auth -cutthrough $CA $extra || exit 1