diff --git a/lib/POE/Component/SSLify/ServerHandle.pm b/lib/POE/Component/SSLify/ServerHandle.pm index 7091ae3..1a9b2a2 100644 --- a/lib/POE/Component/SSLify/ServerHandle.pm +++ b/lib/POE/Component/SSLify/ServerHandle.pm @@ -156,6 +156,7 @@ } # Thanks to RT#95071 and RT#58243 we need to clamp the length to the TLS 16K limit + # seems like the same thing happened to https://www.mail-archive.com/openssl-users@openssl.org/msg28151.html if ( $len > 16384 ) { $len = 16384; }