1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-01-02 23:47:07 -05:00

fix crash when tun app has no socket option

This commit is contained in:
Shelikhoo 2023-10-23 01:39:19 +01:00
parent 263fbf5765
commit e87af12bf8
No known key found for this signature in database
GPG Key ID: C4D5E79D22B25316
2 changed files with 11 additions and 7 deletions

View File

@ -55,9 +55,11 @@ func SetTCPHandler(ctx context.Context, dispatcher routing.Dispatcher, policyMan
}
defer r.Complete(false)
if config.SocketSettings != nil {
if err := applySocketOptions(s, linkedEndpoint, config.SocketSettings); err != nil {
newError("failed to apply socket options: ", err).WriteToLog(session.ExportIDToError(ctx))
}
}
conn := &tcpConn{
TCPConn: gonet.NewTCPConn(wg, linkedEndpoint),

View File

@ -39,6 +39,7 @@ func (t *TUN) CreateStack(linkedEndpoint stack.LinkEndpoint) (*stack.Stack, erro
SetSpoofing(nicID, t.config.EnableSpoofing),
}
if t.config.SocketSettings != nil {
if size := t.config.SocketSettings.TxBufSize; size != 0 {
opts = append(opts, SetTCPSendBufferSize(int(size)))
}
@ -46,6 +47,7 @@ func (t *TUN) CreateStack(linkedEndpoint stack.LinkEndpoint) (*stack.Stack, erro
if size := t.config.SocketSettings.RxBufSize; size != 0 {
opts = append(opts, SetTCPReceiveBufferSize(int(size)))
}
}
for _, opt := range opts {
if err := opt(s); err != nil {