| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- package socketcfg
- import (
- "strings"
- "github.com/v2fly/v2ray-core/v5/transport/internet"
- )
- type SocketConfig struct {
- Mark uint32 `json:"mark"`
- TFO *bool `json:"tcpFastOpen"`
- TProxy string `json:"tproxy"`
- AcceptProxyProtocol bool `json:"acceptProxyProtocol"`
- TCPKeepAliveInterval int32 `json:"tcpKeepAliveInterval"`
- TCPKeepAliveIdle int32 `json:"tcpKeepAliveIdle"`
- TFOQueueLength uint32 `json:"tcpFastOpenQueueLength"`
- BindToDevice string `json:"bindToDevice"`
- RxBufSize uint64 `json:"rxBufSize"`
- TxBufSize uint64 `json:"txBufSize"`
- ForceBufSize bool `json:"forceBufSize"`
- MPTCP *bool `json:"mptcp"`
- }
- // Build implements Buildable.
- func (c *SocketConfig) Build() (*internet.SocketConfig, error) {
- var tfoSettings internet.SocketConfig_TCPFastOpenState
- if c.TFO != nil {
- if *c.TFO {
- tfoSettings = internet.SocketConfig_Enable
- } else {
- tfoSettings = internet.SocketConfig_Disable
- }
- }
- tfoQueueLength := c.TFOQueueLength
- if tfoQueueLength == 0 {
- tfoQueueLength = 4096
- }
- var tproxy internet.SocketConfig_TProxyMode
- switch strings.ToLower(c.TProxy) {
- case "tproxy":
- tproxy = internet.SocketConfig_TProxy
- case "redirect":
- tproxy = internet.SocketConfig_Redirect
- default:
- tproxy = internet.SocketConfig_Off
- }
- var mptcpSettings internet.MPTCPState
- if c.MPTCP != nil {
- if *c.MPTCP {
- mptcpSettings = internet.MPTCPState_Enable
- } else {
- mptcpSettings = internet.MPTCPState_Disable
- }
- }
- return &internet.SocketConfig{
- Mark: c.Mark,
- Tfo: tfoSettings,
- TfoQueueLength: tfoQueueLength,
- Tproxy: tproxy,
- AcceptProxyProtocol: c.AcceptProxyProtocol,
- TcpKeepAliveInterval: c.TCPKeepAliveInterval,
- TcpKeepAliveIdle: c.TCPKeepAliveIdle,
- RxBufSize: int64(c.RxBufSize),
- TxBufSize: int64(c.TxBufSize),
- ForceBufSize: c.ForceBufSize,
- BindToDevice: c.BindToDevice,
- Mptcp: mptcpSettings,
- }, nil
- }
|