2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-18 05:56:03 +00:00

01_FHEMWEB.pm: do not limit the size of the returned data (Forum #67364)

git-svn-id: https://svn.fhem.de/fhem/trunk@13463 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2017-02-20 08:48:42 +00:00
parent 66d708a574
commit 4ca8da6a57

View File

@ -556,7 +556,7 @@ FW_Read($$)
"Content-Length: $length\r\n" .
$expires . $compressed . $FW_headerlines .
"Content-Type: $FW_RETTYPE\r\n\r\n" .
$FW_RET, "FW_closeConn") ){
$FW_RET, "FW_closeConn", 1) ){
Log3 $name, 4, "Closing connection $name due to full buffer in FW_Read"
if(!$hash->{isChild});
TcpServer_Close( $hash );