(self, level, optname, buflen=None)
| 610 | return os.write(self.fd, *args) |
| 611 | |
| 612 | def getsockopt(self, level, optname, buflen=None): |
| 613 | if (level == socket.SOL_SOCKET and |
| 614 | optname == socket.SO_ERROR and |
| 615 | not buflen): |
| 616 | return 0 |
| 617 | raise NotImplementedError("Only asyncore specific behaviour " |
| 618 | "implemented.") |
| 619 | |
| 620 | read = recv |
| 621 | write = send |
no outgoing calls