This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author thomas.belhalfaoui
Recipients martin.panter, terry.reedy, thomas.belhalfaoui
Date 2015-09-06.15:31:51
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1441553512.18.0.0948796291183.issue24964@psf.upfronthosting.co.za>
In-reply-to
Content
Martin, I went through your patch and made some simple tests, and I have a couple of questions.

1) When I run the following code, I get a "Bad file descriptor" :

conn = httplib.HTTPConnection("uk.proxymesh.com", 31280)
conn.set_tunnel("www.google.com", 80)
conn.request("GET", "/")
resp = conn.getresponse()
print(resp.read())

So I tweaked the "getresponse" function so that it does not call "self.close()" (i.e. the connection stays open after the CONNECT request) in that case, and it seems to works fine.

2) I added "self.sock, _ = tunnel" in HTTPConnection constructor, to try your use case, but I get "http.client.RemoteDisconnected: Remote end closed connection without response".

Do you think it makes sense or am I missing something ?
History
Date User Action Args
2015-09-06 15:31:52thomas.belhalfaouisetrecipients: + thomas.belhalfaoui, terry.reedy, martin.panter
2015-09-06 15:31:52thomas.belhalfaouisetmessageid: <1441553512.18.0.0948796291183.issue24964@psf.upfronthosting.co.za>
2015-09-06 15:31:52thomas.belhalfaouilinkissue24964 messages
2015-09-06 15:31:51thomas.belhalfaouicreate