From a3509b7f229eafdcbdd545e49de8ad2ac728e034 Mon Sep 17 00:00:00 2001 From: Heikki Hannikainen Date: Thu, 16 Feb 2012 16:36:49 +0200 Subject: reverse proxy mode: small comment clarification --- libmproxy/proxy.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'libmproxy') diff --git a/libmproxy/proxy.py b/libmproxy/proxy.py index 3b853e94..9b22c500 100644 --- a/libmproxy/proxy.py +++ b/libmproxy/proxy.py @@ -348,8 +348,11 @@ class ProxyHandler(SocketServer.StreamRequestHandler): self.rfile = FileLike(self.connection) self.wfile = FileLike(self.connection) method, scheme, host, port, path, httpminor = parse_request_line(self.rfile.readline()) - # if we're in reverse proxy mode, we only get the path and version in the request - # and need to fill up host and port from the configuration + # If we're in reverse proxy mode, we only get the path and + # version in the request and need to fill up host and port + # from the configuration. This still assumes that the client will + # provide the correct Host: header and we do not need to tamper + # with that (or will tamper using other means). if self.config.reverse_upstream: scheme = 'http' host, port = self.config.reverse_upstream.split(':') -- cgit v1.2.3