0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-07-05 01:58:35 +02:00

ircd::net::dns::resolver: Increase worker stack sizes.

This commit is contained in:
Jason Volk 2019-09-11 15:11:58 -07:00
parent ea9ee27ec2
commit c7168d3016

View file

@ -113,15 +113,15 @@ ircd::net::dns::resolver::resolver(answers_callback callback)
}
,recv_context
{
"net.dns.R", 1_MiB, std::bind(&resolver::recv_worker, this), context::POST
"net.dns.R", 768_KiB, std::bind(&resolver::recv_worker, this), context::POST
}
,timeout_context
{
"net.dns.T", 64_KiB, std::bind(&resolver::timeout_worker, this), context::POST
"net.dns.T", 512_KiB, std::bind(&resolver::timeout_worker, this), context::POST
}
,sendq_context
{
"net.dns.S", 64_KiB, std::bind(&resolver::sendq_worker, this), context::POST
"net.dns.S", 256_KiB, std::bind(&resolver::sendq_worker, this), context::POST
}
{
ns.open(ip::udp::v4());