123456789101112131415161718192021222324252627282930 |
- package consts
- var (
-
- Idle string = "idle"
- Working string = "working"
- Closed string = "closed"
- Online string = "online"
- Offline string = "offline"
-
- TcpProxy string = "tcp"
- UdpProxy string = "udp"
- HttpProxy string = "http"
- HttpsProxy string = "https"
- )
|