| 283 | } |
| 284 | |
| 285 | type relayPacketConn struct { |
| 286 | conn net.Conn |
| 287 | raddr net.Addr |
| 288 | wmu sync.Mutex |
| 289 | } |
| 290 | |
| 291 | func (c *relayPacketConn) ReadFrom(p []byte) (int, net.Addr, error) { |
| 292 | var header [2]byte |
nothing calls this directly
no outgoing calls
no test coverage detected