mirror of
https://github.com/matrix-construct/construct
synced 2025-02-19 18:20:19 +01:00
ircd::net Increase buffer sizes.
This commit is contained in:
parent
46acff07b7
commit
9a44188c00
1 changed files with 10 additions and 10 deletions
20
ircd/net.cc
20
ircd/net.cc
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue