Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion yowsup/common/http/warequest.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,18 @@ def sendRequest(host, port, path, headers, params, reqType="GET"):
logger.debug(params)

logger.debug("Opening connection to %s" % host);
conn = httplib.HTTPSConnection(host ,port) if port == 443 else httplib.HTTPConnection(host ,port)
if port == 443:
conn_type = 'HTTPS'
else:
conn_type = 'HTTP'

if conn_type+'_PROXY' in os.environ:
proxy_host, proxy_port = os.environ[conn_type+'_PROXY'].split(':')
conFn = getattr(httplib, conn_type+'Connection')
conn = conFn(proxy_host, proxy_port)
conn.set_tunnel(host, port)
else:
conn = httplib.HTTPSConnection(host, port)
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what about if no proxy env variables are set, but the port is also not 443. In this implementation it seems to still use HTTPSConnection anyways


logger.debug("Sending %s request to %s" % (reqType, path))
conn.request(reqType, path, params, headers);
Expand Down