2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-06 12:18:46 +00:00

HttpUtils.pm: fix nonblocking_get for windows/32 (Forum #45403)

git-svn-id: https://svn.fhem.de/fhem/trunk@10137 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2015-12-09 09:01:41 +00:00
parent be7b021466
commit ba69448d21

View File

@ -147,7 +147,8 @@ HttpUtils_Connect($)
}
my $ret = connect($hash->{conn}, sockaddr_in($port, $iaddr));
if(!$ret) {
if($!{EINPROGRESS} || int($!)==10035) { # Nonblocking connect
if($!{EINPROGRESS} || int($!)==10035 ||
(int($!)==140 && $^O eq "MSWin32")) { # Nonblocking connect
$hash->{FD} = $hash->{conn}->fileno();
my %timerHash = ( hash => $hash );