GetHttpFile -> GetFileFromURL change

git-svn-id: https://fhem.svn.sourceforge.net/svnroot/fhem/trunk/fhem@1629 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig
2012-06-20 07:16:29 +00:00
parent 7d8d988afe
commit 894e20a5c8
5 changed files with 16 additions and 4 deletions

View File

@@ -83,4 +83,13 @@ GetFileFromURL($@)
return $ret;
}
##################
# Compatibility mode
sub
GetHttpFile($$)
{
my ($host,$port) = @_;
return GetFileFromURL("http://$host$file);
}
1;