attempt to make http compile on w32 pt3

This commit is contained in:
darkrose 2013-12-01 14:14:20 +10:00
parent 8da4d7456c
commit eb8ba14347
1 changed files with 4 additions and 0 deletions

View File

@ -683,7 +683,11 @@ void HTTPClient::step()
* or the server has enable_http = false */ * or the server has enable_http = false */
//if (m_requests.size() > 0 || m_cookie == "") //if (m_requests.size() > 0 || m_cookie == "")
//m_client->sendWantCookie(); //m_client->sendWantCookie();
#ifdef _WIN32
Sleep(1000);
#else
sleep(1); sleep(1);
#endif
return; return;
} }