()
| 101 | } |
| 102 | |
| 103 | func (tcpConn *TCPConn) RemoteAddr() net.Addr { |
| 104 | return tcpConn.conn.RemoteAddr() |
| 105 | } |
| 106 | |
| 107 | func (tcpConn *TCPConn) ReadMsg() ([]byte, error) { |
| 108 | return tcpConn.msgParser.Read(tcpConn) |
nothing calls this directly
no test coverage detected