1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-20 22:45:24 +00:00

add json parse rule for tcp keep alive interval

This commit is contained in:
Shelikhoo 2021-05-04 22:37:38 +01:00
parent c564c84b17
commit 8d4b4201f8
No known key found for this signature in database
GPG Key ID: C4D5E79D22B25316

View File

@ -387,6 +387,8 @@ type SocketConfig struct {
TFO *bool `json:"tcpFastOpen"` TFO *bool `json:"tcpFastOpen"`
TProxy string `json:"tproxy"` TProxy string `json:"tproxy"`
AcceptProxyProtocol bool `json:"acceptProxyProtocol"` AcceptProxyProtocol bool `json:"acceptProxyProtocol"`
TcpKeepAliveInterval uint32 `json:"tcpKeepAliveInterval"`
} }
// Build implements Buildable. // Build implements Buildable.
@ -410,10 +412,11 @@ func (c *SocketConfig) Build() (*internet.SocketConfig, error) {
} }
return &internet.SocketConfig{ return &internet.SocketConfig{
Mark: c.Mark, Mark: c.Mark,
Tfo: tfoSettings, Tfo: tfoSettings,
Tproxy: tproxy, Tproxy: tproxy,
AcceptProxyProtocol: c.AcceptProxyProtocol, AcceptProxyProtocol: c.AcceptProxyProtocol,
TcpKeepAliveInterval: c.TcpKeepAliveInterval,
}, nil }, nil
} }