mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
make Listener a struct, not an interface
This commit is contained in:
parent
2a03c6cd79
commit
1b64b13750
16 changed files with 53 additions and 37 deletions
|
@ -46,7 +46,7 @@ func (c *tokenStore) Pop(key string) *quic.ClientToken {
|
|||
|
||||
var _ = Describe("Handshake tests", func() {
|
||||
var (
|
||||
server quic.Listener
|
||||
server *quic.Listener
|
||||
serverConfig *quic.Config
|
||||
acceptStopped chan struct{}
|
||||
)
|
||||
|
@ -221,7 +221,7 @@ var _ = Describe("Handshake tests", func() {
|
|||
|
||||
Context("rate limiting", func() {
|
||||
var (
|
||||
server quic.Listener
|
||||
server *quic.Listener
|
||||
pconn net.PacketConn
|
||||
)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue