()
| 9 | // Socket is any interface that defines the behaviors of Socket |
| 10 | type Socket interface { |
| 11 | ReadPacketData() ([]byte, gopacket.CaptureInfo, error) |
| 12 | WritePacketData([]byte) error |
| 13 | SetBPFFilter(string) error |
| 14 | SetPromiscuous(bool) error |
no outgoing calls
no test coverage detected