aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libmproxy/models/http.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/libmproxy/models/http.py b/libmproxy/models/http.py
index 3c024e76..a2a345d7 100644
--- a/libmproxy/models/http.py
+++ b/libmproxy/models/http.py
@@ -456,14 +456,13 @@ def make_connect_request(address):
def make_connect_response(http_version):
- headers = Headers(
- Proxy_Agent=version.NAMEVERSION
- )
+ # Do not send any response headers as it breaks proxying non-80 ports on
+ # Android emulators using the -http-proxy option.
return HTTPResponse(
http_version,
200,
"Connection established",
- headers,
+ Headers(),
"",
)