Lines Matching +full:next +full:- +full:mode
2 * Copyright 2017-2024 The OpenSSL Project Authors. All Rights Reserved.
73 BIO *next = BIO_next(bio); in watchccs_read() local
77 if (next == NULL) in watchccs_read()
82 ret = BIO_read(next, out, outl); in watchccs_read()
83 if (ret <= 0 && BIO_should_read(next)) in watchccs_read()
92 BIO *next = BIO_next(bio); in watchccs_write() local
98 if (next == NULL) in watchccs_write()
206 ret = BIO_write(next, in, inl); in watchccs_write()
207 if (ret <= 0 && BIO_should_write(next)) in watchccs_write()
216 BIO *next = BIO_next(bio); in watchccs_ctrl() local
218 if (next == NULL) in watchccs_ctrl()
226 ret = BIO_ctrl(next, cmd, num, ptr); in watchccs_ctrl()
234 /* We don't support this - not needed anyway */ in watchccs_gets()
235 return -1; in watchccs_gets()
266 * Test 1: Simple Handshake, client middlebox compat mode disabled in test_tls13ccs()
267 * Test 2: Simple Handshake, server middlebox compat mode disabled in test_tls13ccs()
269 * Test 4: HRR Handshake, client middlebox compat mode disabled in test_tls13ccs()
270 * Test 5: HRR Handshake, server middlebox compat mode disabled in test_tls13ccs()
272 * Test 7: Early data handshake, client middlebox compat mode disabled in test_tls13ccs()
273 * Test 8: Early data handshake, server middlebox compat mode disabled in test_tls13ccs()
275 * Test 10: Early data then HRR, client middlebox compat mode disabled in test_tls13ccs()
276 * Test 11: Early data then HRR, server middlebox compat mode disabled in test_tls13ccs()
324 if (!TEST_true(SSL_CTX_set1_groups_list(sctx, "P-384"))) in test_tls13ccs()