(self)
| 214 | |
| 215 | class Handler(BaseHTTPRequestHandler): |
| 216 | def do_GET(self): |
| 217 | self.send_response(200) |
| 218 | body = b"forward-proxy-ok" |
| 219 | self.send_header("Content-Length", str(len(body))) |
| 220 | self.end_headers() |
| 221 | self.wfile.write(body) |
| 222 | |
| 223 | def log_message(self, *args): |
| 224 | pass # suppress log output |
nothing calls this directly
no test coverage detected