0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-10 22:18:54 +02:00

ircd::net Increase buffer sizes.

This commit is contained in:
Jason Volk 2019-04-16 21:11:27 -07:00
parent 46acff07b7
commit 9a44188c00

View file

@ -3325,7 +3325,7 @@ noexcept try
if(!valid)
{
thread_local char buf[4_KiB];
thread_local char buf[16_KiB];
const critical_assertion ca;
log::warning
{
@ -3410,16 +3410,16 @@ noexcept try
}
}
#ifdef RB_DEBUG
thread_local char buf[16_KiB];
const critical_assertion ca;
log::debug
{
thread_local char buf[4_KiB];
const critical_assertion ca;
log::debug
{
log, "verify[%s]: %s",
common_name(opts),
openssl::print_subject(buf, cert)
};
}
log, "verify[%s]: %s",
common_name(opts),
openssl::print_subject(buf, cert)
};
#endif
return true;
}