mirror of
https://github.com/matrix-construct/construct
synced 2025-03-31 23:11:33 +02:00
ircd::net::dns::resolver: Increase worker stack sizes.
This commit is contained in:
parent
ea9ee27ec2
commit
c7168d3016
1 changed files with 3 additions and 3 deletions
|
@ -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());
|
||||
|
|
Loading…
Add table
Reference in a new issue