removed erroneous udp buffer setting
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Jake Hillion 2021-03-23 20:35:22 +00:00
parent b8428d4643
commit 9509f16a25

View File

@ -36,11 +36,6 @@ func NewListener(p *proxy.Proxy, local string, v func() proxy.MacVerifier, g fun
return err
}
err = pconn.SetWriteBuffer(0)
if err != nil {
panic(err)
}
receivedConnections := make(map[ComparableUdpAddress]*Flow)
go func() {