12345678910111213141516171819202122232425262728293031323334353637383940 |
- package consts
- var (
-
- Idle string = "idle"
- Working string = "working"
- Closed string = "closed"
- Online string = "online"
- Offline string = "offline"
-
- TcpProxy string = "tcp"
- UdpProxy string = "udp"
- TcpMuxProxy string = "tcpmux"
- HttpProxy string = "http"
- HttpsProxy string = "https"
- StcpProxy string = "stcp"
- XtcpProxy string = "xtcp"
-
- TokenAuthMethod string = "token"
- OidcAuthMethod string = "oidc"
-
- HttpConnectTcpMultiplexer string = "httpconnect"
- )
|