From ce0b33d2ff93dba30fb7c7b4a9df918f1927b09c Mon Sep 17 00:00:00 2001 From: Marten Seemann Date: Fri, 9 Mar 2018 18:32:43 +0700 Subject: [PATCH] use the maximum receive packet size, not send packet size, in the proxy --- integrationtests/tools/proxy/proxy_test.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/integrationtests/tools/proxy/proxy_test.go b/integrationtests/tools/proxy/proxy_test.go index d36e1b42..3d2a1f78 100644 --- a/integrationtests/tools/proxy/proxy_test.go +++ b/integrationtests/tools/proxy/proxy_test.go @@ -156,7 +156,7 @@ var _ = Describe("QUIC Proxy", func() { go func() { for { - buf := make([]byte, protocol.MaxPacketSize) + buf := make([]byte, protocol.MaxReceivePacketSize) // the ReadFromUDP will error as soon as the UDP conn is closed n, addr, err2 := serverConn.ReadFromUDP(buf) if err2 != nil { @@ -231,7 +231,7 @@ var _ = Describe("QUIC Proxy", func() { // receive the packets echoed by the server on client side go func() { for { - buf := make([]byte, protocol.MaxPacketSize) + buf := make([]byte, protocol.MaxReceivePacketSize) // the ReadFromUDP will error as soon as the UDP conn is closed n, _, err2 := clientConn.ReadFromUDP(buf) if err2 != nil { @@ -282,7 +282,7 @@ var _ = Describe("QUIC Proxy", func() { // receive the packets echoed by the server on client side go func() { for { - buf := make([]byte, protocol.MaxPacketSize) + buf := make([]byte, protocol.MaxReceivePacketSize) // the ReadFromUDP will error as soon as the UDP conn is closed n, _, err2 := clientConn.ReadFromUDP(buf) if err2 != nil { @@ -363,7 +363,7 @@ var _ = Describe("QUIC Proxy", func() { // receive the packets echoed by the server on client side go func() { for { - buf := make([]byte, protocol.MaxPacketSize) + buf := make([]byte, protocol.MaxReceivePacketSize) // the ReadFromUDP will error as soon as the UDP conn is closed n, _, err2 := clientConn.ReadFromUDP(buf) if err2 != nil {