use the maximum receive packet size, not send packet size, in the proxy

This commit is contained in:
Marten Seemann 2018-03-09 18:32:43 +07:00
parent 7b43d17fab
commit ce0b33d2ff

View file

@ -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 {