mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-01-18 07:17:32 -05:00
11 lines
149 B
Go
11 lines
149 B
Go
package internet
|
|
|
|
func isTCPSocket(network string) bool {
|
|
switch network {
|
|
case "tcp", "tcp4", "tcp6":
|
|
return true
|
|
default:
|
|
return false
|
|
}
|
|
}
|