Home
last modified time | relevance | path

Searched refs:buf_content_size (Results 1 – 1 of 1) sorted by relevance

/mbedtls-latest/programs/ssl/
Dssl_server2.c2333 size_t buf_content_size = opt.buffer_size; in main() local
2336 if (buf_content_size < strlen(HTTP_RESPONSE) + 80) { in main()
2337 buf_content_size = strlen(HTTP_RESPONSE) + 80; in main()
2340 buf_content_size < (size_t) opt.response_size) { in main()
2341 buf_content_size = opt.response_size; in main()
2343 buf = mbedtls_calloc(1, buf_content_size + 1); in main()
2346 (unsigned long) buf_content_size + 1); in main()