Lines Matching defs:renego_period
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 */
1536 unsigned char renego_period[8] = { 0 };
1728 opt.renego_period = DFL_RENEGO_PERIOD;
2025 } else if (strcmp(p, "renego_period") == 0) {
2027 opt.renego_period = _strtoui64(q, NULL, 10);
2029 if (sscanf(q, "%" SCNu64, &opt.renego_period) != 1) {
2033 if (opt.renego_period < 2) {
3054 if (opt.renego_period != DFL_RENEGO_PERIOD) {
3055 PUT_UINT64_BE(renego_period, opt.renego_period, 0);
3056 mbedtls_ssl_conf_renegotiation_period(&conf, renego_period);