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