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