mirror of
https://github.com/xjasonlyu/tun2socks.git
synced 2025-10-05 16:56:54 +08:00
20 lines
279 B
Go
20 lines
279 B
Go
package dialer
|
|
|
|
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
|
|
}
|
|
}
|