check_tls: use static buffer.
This commit is contained in:
parent
7974571615
commit
ca2cf957b0
@ -156,7 +156,7 @@ td::Result<TlsInfo> test_tls(const td::string &url) {
|
||||
size_t server_hello_length = 0;
|
||||
size_t encrypted_application_data_length_sum = 0;
|
||||
while (td::Time::now() < end_time) {
|
||||
char buf[20000];
|
||||
static char buf[20000];
|
||||
TRY_RESULT(res, socket.read(td::MutableSlice{buf, sizeof(buf)}));
|
||||
if (res > 0) {
|
||||
auto read_length = [&]() -> size_t {
|
||||
|
Loading…
Reference in New Issue
Block a user