Get the request and client address from the socket. May be overridden.
(self)
| 500 | return self.socket.fileno() |
| 501 | |
| 502 | def get_request(self): |
| 503 | """Get the request and client address from the socket. |
| 504 | |
| 505 | May be overridden. |
| 506 | |
| 507 | """ |
| 508 | return self.socket.accept() |
| 509 | |
| 510 | def shutdown_request(self, request): |
| 511 | """Called to shutdown and close an individual request.""" |
no test coverage detected