1
0
mirror of https://github.com/MetaCubeX/mihomo.git synced 2025-09-19 20:15:59 +08:00
Files
mihomo/constant/addr.go

16 lines
221 B
Go
Raw Normal View History

2018-06-10 22:50:03 +08:00
package constant
// Socks addr type
const (
AtypIPv4 = 1
AtypDomainName = 3
AtypIPv6 = 4
)
// Addr is used to store connection address
type Addr struct {
AddrType int
Host string
Port string
}