mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 05:07:36 +03:00
quicproxy: increase UDP send and receive buffer sizes (#3813)
This commit is contained in:
parent
378e3c8b74
commit
f5516715eb
1 changed files with 14 additions and 2 deletions
|
@ -169,6 +169,12 @@ func NewQuicProxy(local string, opts *Opts) (*QuicProxy, error) {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
if err := conn.SetReadBuffer(protocol.DesiredReceiveBufferSize); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
if err := conn.SetWriteBuffer(protocol.DesiredSendBufferSize); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
raddr, err := net.ResolveUDPAddr("udp", opts.RemoteAddr)
|
raddr, err := net.ResolveUDPAddr("udp", opts.RemoteAddr)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
|
@ -225,13 +231,19 @@ func (p *QuicProxy) LocalPort() int {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (p *QuicProxy) newConnection(cliAddr *net.UDPAddr) (*connection, error) {
|
func (p *QuicProxy) newConnection(cliAddr *net.UDPAddr) (*connection, error) {
|
||||||
srvudp, err := net.DialUDP("udp", nil, p.serverAddr)
|
conn, err := net.DialUDP("udp", nil, p.serverAddr)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
if err := conn.SetReadBuffer(protocol.DesiredReceiveBufferSize); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
if err := conn.SetWriteBuffer(protocol.DesiredSendBufferSize); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
return &connection{
|
return &connection{
|
||||||
ClientAddr: cliAddr,
|
ClientAddr: cliAddr,
|
||||||
ServerConn: srvudp,
|
ServerConn: conn,
|
||||||
incomingPackets: make(chan packetEntry, 10),
|
incomingPackets: make(chan packetEntry, 10),
|
||||||
Incoming: newQueue(),
|
Incoming: newQueue(),
|
||||||
Outgoing: newQueue(),
|
Outgoing: newQueue(),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue