(self)
| 689 | return L2pcapSocket.select(socks, remain=remain) |
| 690 | |
| 691 | def close(self): |
| 692 | # type: () -> None |
| 693 | if self.closed: |
| 694 | return |
| 695 | super(L3pcapSocket, self).close() |
| 696 | for fd in self.send_socks.values(): |
| 697 | if fd is not self: |
| 698 | fd.close() |
no test coverage detected