(self)
| 295 | self.wfile.write(body) |
| 296 | |
| 297 | def do_POST(self): |
| 298 | self.send_response(200) |
| 299 | body = b"connect-server-ok" |
| 300 | self.send_header("Content-Length", str(len(body))) |
| 301 | self.end_headers() |
| 302 | self.wfile.write(body) |
| 303 | |
| 304 | def log_message(self, *args): |
| 305 | pass |
nothing calls this directly
no test coverage detected