mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-02-05 03:50:07 +00:00
Minor clean-ups and fix for posix WaitableEvent.
This commit is contained in:
parent
2b06e4f6d9
commit
7228c6b593
13 changed files with 329 additions and 321 deletions
|
|
@ -136,12 +136,12 @@ public:
|
|||
if (! decomposeURL (proxyURL, proxyName, proxyPath, proxyPort))
|
||||
return false;
|
||||
|
||||
host = gethostbyname ((const char*) proxyName.toUTF8());
|
||||
host = gethostbyname (proxyName.toUTF8());
|
||||
port = proxyPort;
|
||||
}
|
||||
else
|
||||
{
|
||||
host = gethostbyname ((const char*) hostName.toUTF8());
|
||||
host = gethostbyname (hostName.toUTF8());
|
||||
port = hostPort;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue