TCPConn implements the net.Conn interface.
| 8 | |
| 9 | // TCPConn implements the net.Conn interface. |
| 10 | type TCPConn interface { |
| 11 | net.Conn |
| 12 | |
| 13 | // ID returns the transport endpoint id of TCPConn. |
| 14 | ID() *stack.TransportEndpointID |
| 15 | } |
| 16 | |
| 17 | // UDPConn implements net.Conn and net.PacketConn. |
| 18 | type UDPConn interface { |
no outgoing calls
no test coverage detected
searching dependent graphs…