(self, level, optname, buflen=None)
| 620 | return os.write(self.fd, *args) |
| 621 | |
| 622 | def getsockopt(self, level, optname, buflen=None): |
| 623 | if (level == socket.SOL_SOCKET and |
| 624 | optname == socket.SO_ERROR and |
| 625 | not buflen): |
| 626 | return 0 |
| 627 | raise NotImplementedError("Only asyncore specific behaviour " |
| 628 | "implemented.") |
| 629 | |
| 630 | read = recv |
| 631 | write = send |
no outgoing calls