mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-16 19:56:51 +08:00
16 lines
221 B
Go
16 lines
221 B
Go
|
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
|
||
|
}
|