Searched refs:renego_period (Results 1 - 4 of 4) sorted by relevance
/third_party/mbedtls/programs/ssl/ |
H A D | ssl_server2.c | 413 " renego_period=%%d default: (2^64 - 1 for TLS, 2^48 - 1 for DTLS)\n" 650 uint64_t renego_period; /* period for automatic renegotiation */ member 1536 unsigned char renego_period[8] = { 0 }; in main() local 1728 opt.renego_period = DFL_RENEGO_PERIOD; in main() 2025 } else if (strcmp(p, "renego_period") == 0) { in main() 2027 opt.renego_period = _strtoui64(q, NULL, 10); in main() 2029 if (sscanf(q, "%" SCNu64, &opt.renego_period) != 1) { in main() 2033 if (opt.renego_period < 2) { in main() 3054 if (opt.renego_period != DFL_RENEGO_PERIOD) { in main() 3055 PUT_UINT64_BE(renego_period, op in main() [all...] |
/third_party/mbedtls/include/mbedtls/ |
H A D | ssl.h | 1655 unsigned char MBEDTLS_PRIVATE(renego_period)[8]; /*!< value of the record counters
|
/third_party/mbedtls/library/ |
H A D | ssl_msg.c | 5556 &ssl->conf->renego_period[ep_len], in ssl_check_ctr_renegotiate() 5559 &ssl->conf->renego_period[ep_len], in ssl_check_ctr_renegotiate()
|
H A D | ssl_tls.c | 2996 memcpy(conf->renego_period, period, 8); in mbedtls_ssl_conf_renegotiation_period() 5905 memset(conf->renego_period, 0x00, 2); in mbedtls_ssl_config_defaults() 5906 memset(conf->renego_period + 2, 0xFF, 6); in mbedtls_ssl_config_defaults()
|
Completed in 31 milliseconds