Fix #114: revert proxy change that breaks w/o libcurl

This commit is contained in:
John Reese 2014-09-02 12:08:06 -07:00
parent aac08a1430
commit d29ce3be2a
1 changed files with 2 additions and 2 deletions

View File

@ -588,7 +588,7 @@ class CPushMod : public CModule
// Create the socket connection, write to it, and add it to the queue
CPushSocket *sock = new CPushSocket(this);
sock->Connect(service_host, use_port, use_ssl);
sock->Request(use_post, service_host, service_url, params, service_auth, options["proxy"].c_str());
sock->Request(use_post, service_host, service_url, params, service_auth);
AddSocket(sock);
#endif
}
@ -1552,7 +1552,7 @@ class CPushMod : public CModule
// Create the socket connection, write to it, and add it to the queue
CPushSocket *sock = new CPushSocket(this);
sock->Connect(service_host, use_port, use_ssl);
sock->Request(use_post, service_host, service_url, params, service_auth, options["proxy"].c_str());
sock->Request(use_post, service_host, service_url, params, service_auth);
AddSocket(sock);
#endif