/third_party/node/deps/openssl/openssl/ssl/record/ |
H A D | record.h | 136 int read_ahead; member 189 #define RECORD_LAYER_set_read_ahead(rl, ra) ((rl)->read_ahead = (ra)) 190 #define RECORD_LAYER_get_read_ahead(rl) ((rl)->read_ahead)
|
H A D | rec_layer_s3.c | 42 * Do I need to clear read_ahead? As far as I can tell read_ahead did not in RECORD_LAYER_clear() 189 * s->rlayer.packet_length. (If s->rlayer.read_ahead is set, 'max' bytes may in ssl3_read_n() 267 * Also, we always act like read_ahead is set for DTLS. in ssl3_read_n() 269 if (!BIO_get_ktls_recv(s->rbio) && !s->rlayer.read_ahead in ssl3_read_n()
|
/third_party/openssl/ssl/record/ |
H A D | record.h | 136 int read_ahead; member 189 #define RECORD_LAYER_set_read_ahead(rl, ra) ((rl)->read_ahead = (ra)) 190 #define RECORD_LAYER_get_read_ahead(rl) ((rl)->read_ahead)
|
H A D | rec_layer_s3.c | 42 * Do I need to clear read_ahead? As far as I can tell read_ahead did not in RECORD_LAYER_clear() 198 * s->rlayer.packet_length. (If s->rlayer.read_ahead is set, 'max' bytes may in ssl3_read_n() 282 * Also, we always act like read_ahead is set for DTLS. in ssl3_read_n() 284 if (!BIO_get_ktls_recv(s->rbio) && !s->rlayer.read_ahead in ssl3_read_n()
|
/third_party/libwebsockets/lib/tls/mbedtls/wrapper/include/internal/ |
H A D | ssl_types.h | 147 int read_ahead; member 194 int read_ahead; member
|
/third_party/libwebsockets/lib/tls/mbedtls/wrapper/library/ |
H A D | ssl_lib.c | 963 ssl->rlayer.read_ahead = yes; in SSL_set_read_ahead() 973 ctx->read_ahead = yes; in SSL_CTX_set_read_ahead() 983 return ssl->rlayer.read_ahead; in SSL_get_read_ahead() 993 return ctx->read_ahead; in SSL_CTX_get_read_ahead() 1003 return ctx->read_ahead; in SSL_CTX_get_default_read_ahead()
|
/third_party/curl/tests/server/ |
H A D | tftpd.c | 236 static void read_ahead(struct testcase *test, int convert); 351 read_ahead(test, convert); /* fill it */ in readit() 361 static void read_ahead(struct testcase *test, in read_ahead() function 1201 read_ahead(test, pf->f_convert); in sendtftp()
|
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/ |
H A D | types.rs | 534 read_ahead: c_int, 638 read_ahead: c_int, 832 read_ahead: c_int, 902 read_ahead: c_int,
|
/third_party/node/deps/openssl/openssl/ssl/ |
H A D | ssl_lib.c | 792 RECORD_LAYER_set_read_ahead(&s->rlayer, ctx->read_ahead); in SSL_new() 1641 * account read_ahead data. A 1 return simply indicates that we have data. in SSL_has_pending() 2605 return ctx->read_ahead; in SSL_CTX_ctrl() 2607 l = ctx->read_ahead; in SSL_CTX_ctrl() 2608 ctx->read_ahead = larg; in SSL_CTX_ctrl()
|
H A D | ssl_local.h | 986 int read_ahead; member
|
/third_party/openssl/ssl/ |
H A D | ssl_lib.c | 732 RECORD_LAYER_set_read_ahead(&s->rlayer, ctx->read_ahead); in SSL_new() 1559 * account read_ahead data. A 1 return simply indicates that we have data. in SSL_has_pending() 2505 return ctx->read_ahead; in SSL_CTX_ctrl() 2507 l = ctx->read_ahead; in SSL_CTX_ctrl() 2508 ctx->read_ahead = larg; in SSL_CTX_ctrl()
|
H A D | ssl_local.h | 977 int read_ahead; member
|
/third_party/rust/crates/rust-openssl/openssl/src/ssl/ |
H A D | mod.rs | 831 pub fn set_read_ahead(&mut self, read_ahead: bool) { in set_read_ahead() 833 ffi::SSL_CTX_set_read_ahead(self.as_ptr(), read_ahead as SslBitType); in set_read_ahead()
|
/third_party/openssl/test/ |
H A D | sslapitest.c | 954 int read_ahead) in execute_test_large_message() 993 if (read_ahead) { in execute_test_large_message() 995 * Test that read_ahead works correctly when dealing with large in execute_test_large_message() 1502 * read_ahead is not relevant to DTLS because DTLS always acts as if in test_large_message_dtls() 1503 * read_ahead is set. in test_large_message_dtls() 3400 /* When idx == 1 we repeat the tests with read_ahead set */ in setupearly_data_test() 3700 * idx == 1: early_data setup using read_ahead 10344 * test 3) having been sent to peerb. Since peerb is not using read_ahead we in test_pipelining() 951 execute_test_large_message(const SSL_METHOD *smeth, const SSL_METHOD *cmeth, int min_version, int max_version, int read_ahead) execute_test_large_message() argument
|