HttpUtils: ignore noshutdown for https

git-svn-id: svn://svn.code.sf.net/p/fhem/code/trunk@5580 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig
2014-04-20 08:38:43 +00:00
parent 8d220ccc4c
commit 458cf98e67

View File

@@ -200,8 +200,11 @@ HttpUtils_Connect2($)
$hdr .= "\r\n";
syswrite $hash->{conn}, $hdr;
syswrite $hash->{conn}, $data if(defined($data));
shutdown $hash->{conn}, 1 if($hash->{shutdown} ||
(defined($hash->{noshutdown}) && $hash->{noshutdown} == 0));
my $s = $hash->{shutdown};
$s =(defined($hash->{noshutdown}) && $hash->{noshutdown}==0) if(!defined($s));
$s = 0 if($hash->{protocol} eq "https");
shutdown($hash->{conn}, 1) if($s);
if($hash->{callback}) { # Nonblocking read
$hash->{FD} = $hash->{conn}->fileno();