mirror of
https://github.com/XRPLF/rippled.git
synced 2026-04-29 15:37:57 +00:00
adds new tls_short_read transport error
This commit is contained in:
@@ -744,8 +744,8 @@ void connection<config>::handle_read_frame(const lib::error_code& ec,
|
||||
return;
|
||||
}
|
||||
}
|
||||
if (ec.value() == 335544539 /*TLS short read */) {
|
||||
m_alog.write(log::alevel::devel,"got TLS short read, ignore for the moment");
|
||||
if (ec == transport::error::tls_short_read) {
|
||||
m_elog.write(log::elevel::rerror,"got TLS short read, ignore for the moment");
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user