Merge pull request #8895 from erikh/proxy_udp_size

pkg/proxy: Bump the maximum size of a UDP packet.
This commit is contained in:
Jessie Frazelle
2014-10-31 13:11:54 -07:00
+1 -1
View File
@@ -13,7 +13,7 @@ import (
const (
UDPConnTrackTimeout = 90 * time.Second
UDPBufSize = 2048
UDPBufSize = 65507
)
// A net.Addr where the IP is split into two fields so you can use it as a key