mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
correctly handle connection errors in the client
This commit is contained in:
parent
96edca5219
commit
8247454b0f
3 changed files with 22 additions and 13 deletions
|
@ -14,12 +14,16 @@ type mockPacketConn struct {
|
|||
addr net.Addr
|
||||
dataToRead []byte
|
||||
dataReadFrom net.Addr
|
||||
readErr error
|
||||
dataWritten bytes.Buffer
|
||||
dataWrittenTo net.Addr
|
||||
closed bool
|
||||
}
|
||||
|
||||
func (c *mockPacketConn) ReadFrom(b []byte) (int, net.Addr, error) {
|
||||
if c.readErr != nil {
|
||||
return 0, nil, c.readErr
|
||||
}
|
||||
if c.dataToRead == nil { // block if there's no data
|
||||
time.Sleep(time.Hour)
|
||||
return 0, nil, io.EOF
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue