mirror of https://github.com/XTLS/Xray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
419 B
30 lines
419 B
package internet |
|
|
|
func isTCPSocket(network string) bool { |
|
switch network { |
|
case "tcp", "tcp4", "tcp6": |
|
return true |
|
default: |
|
return false |
|
} |
|
} |
|
|
|
func isUDPSocket(network string) bool { |
|
switch network { |
|
case "udp", "udp4", "udp6": |
|
return true |
|
default: |
|
return false |
|
} |
|
} |
|
|
|
func (v *SocketConfig) ParseTFOValue() int { |
|
if v.Tfo == 0 { |
|
return -1 |
|
} |
|
tfo := int(v.Tfo) |
|
if tfo < 0 { |
|
tfo = 0 |
|
} |
|
return tfo |
|
}
|
|
|