write a UDP packet back to the subprocess
(payload []byte)
| 160 | type udpResponder interface { |
| 161 | // write a UDP packet back to the subprocess |
| 162 | Write(payload []byte) (n int, err error) |
| 163 | } |
| 164 | |
| 165 | // tcpListener implements net.Listener for connections dispatched by a mux |
no outgoing calls
no test coverage detected