mirror of
https://github.com/matrix-construct/construct
synced 2024-11-19 16:30:52 +01:00
modules/s_dns_resolver: Increase the recv context stack size.
This commit is contained in:
parent
a43c0e5798
commit
67c1ff06aa
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ ircd::net::dns::resolver::resolver(answers_callback callback)
|
|||
}
|
||||
,recv_context
|
||||
{
|
||||
"dnsres R", 128_KiB, std::bind(&resolver::recv_worker, this), context::POST
|
||||
"dnsres R", 1_MiB, std::bind(&resolver::recv_worker, this), context::POST
|
||||
}
|
||||
,timeout_context
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue