mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
fix flaky proxy test
This commit is contained in:
parent
c0b6d4e141
commit
a9e5686cdf
1 changed files with 3 additions and 3 deletions
|
@ -2,6 +2,7 @@ package quicproxy
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
|
"fmt"
|
||||||
"net"
|
"net"
|
||||||
"runtime/pprof"
|
"runtime/pprof"
|
||||||
"strconv"
|
"strconv"
|
||||||
|
@ -9,10 +10,9 @@ import (
|
||||||
"sync/atomic"
|
"sync/atomic"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"fmt"
|
|
||||||
|
|
||||||
"github.com/lucas-clemente/quic-go/internal/protocol"
|
"github.com/lucas-clemente/quic-go/internal/protocol"
|
||||||
"github.com/lucas-clemente/quic-go/internal/wire"
|
"github.com/lucas-clemente/quic-go/internal/wire"
|
||||||
|
|
||||||
. "github.com/onsi/ginkgo"
|
. "github.com/onsi/ginkgo"
|
||||||
. "github.com/onsi/gomega"
|
. "github.com/onsi/gomega"
|
||||||
)
|
)
|
||||||
|
@ -160,8 +160,8 @@ var _ = Describe("QUIC Proxy", func() {
|
||||||
data := buf[0:n]
|
data := buf[0:n]
|
||||||
serverReceivedPackets <- packetData(data)
|
serverReceivedPackets <- packetData(data)
|
||||||
// echo the packet
|
// echo the packet
|
||||||
serverConn.WriteToUDP(data, addr)
|
|
||||||
atomic.AddInt32(&serverNumPacketsSent, 1)
|
atomic.AddInt32(&serverNumPacketsSent, 1)
|
||||||
|
serverConn.WriteToUDP(data, addr)
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
})
|
})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue