Update about-config.md

This commit is contained in:
xiehan
2021-03-25 15:34:02 +00:00
committed by GitHub
parent 14efd04169
commit 52befe607a

View File

@@ -41,6 +41,7 @@ struct EndpointParams
int connect_timeout;
int response_timeout;
int ssl_connect_timeout;
bool use_tls_sni;
};
static constexpr struct EndpointParams ENDPOINT_PARAMS_DEFAULT =
@@ -49,6 +50,7 @@ static constexpr struct EndpointParams ENDPOINT_PARAMS_DEFAULT =
.connect_timeout = 10 * 1000,
.response_timeout = 10 * 1000,
.ssl_connect_timeout = 10 * 1000,
.use_tls_sni = false,
};
~~~