mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
start path MTU discovery when the handshake completes
This commit is contained in:
parent
cb1eab22de
commit
ac87292e87
8 changed files with 208 additions and 28 deletions
|
@ -29,7 +29,10 @@ var _ = Describe("Packetization", func() {
|
|||
server, err = quic.ListenAddr(
|
||||
"localhost:0",
|
||||
getTLSConfig(),
|
||||
getQuicConfig(&quic.Config{AcceptToken: func(net.Addr, *quic.Token) bool { return true }}),
|
||||
getQuicConfig(&quic.Config{
|
||||
AcceptToken: func(net.Addr, *quic.Token) bool { return true },
|
||||
DisablePathMTUDiscovery: true,
|
||||
}),
|
||||
)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
serverAddr := fmt.Sprintf("localhost:%d", server.Addr().(*net.UDPAddr).Port)
|
||||
|
@ -64,7 +67,7 @@ var _ = Describe("Packetization", func() {
|
|||
sess, err := quic.DialAddr(
|
||||
fmt.Sprintf("localhost:%d", proxy.LocalPort()),
|
||||
getTLSClientConfig(),
|
||||
getQuicConfig(nil),
|
||||
getQuicConfig(&quic.Config{DisablePathMTUDiscovery: true}),
|
||||
)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue