()
| 27 | return nil |
| 28 | } |
| 29 | func (this *testConn) LocalAddr() net.Addr { |
| 30 | return &net.TCPAddr{ |
| 31 | IP: net.ParseIP(testutils.RandIP()), |
| 32 | Port: 1234, |
| 33 | } |
| 34 | } |
| 35 | func (this *testConn) RemoteAddr() net.Addr { |
| 36 | if this.addr != nil { |
| 37 | return this.addr |