Merge pull request #8895 from erikh/proxy_udp_size

pkg/proxy: Bump the maximum size of a UDP packet.
Upstream-commit: 7a2dc8b889e6154a6bfc93305382c894f716d61d
Component: engine
This commit is contained in:
Jessie Frazelle
2014-10-31 13:11:54 -07:00

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