| 19 | ) |
| 20 | |
| 21 | type Exchanger interface { |
| 22 | Network() string |
| 23 | Src() string |
| 24 | Dst() string |
| 25 | Exchange(remote net.Conn) error |
| 26 | Clean() |
| 27 | } |
| 28 | |
| 29 | type UDPServerConnFactory interface { |
| 30 | Handle(addr *net.UDPAddr, b, p []byte, w func([]byte) (int, error), timeout int) (net.Conn, []byte, error) |
no outgoing calls
no test coverage detected