Files
proxypin/lib/network/util/attribute_keys.dart
wanghongenpin 827e6fe0d8 socks5 (#291)
2025-01-15 01:36:00 +08:00

13 lines
420 B
Dart

/// @author wanghongen
/// 2023/5/23
interface class AttributeKeys {
static const String host = "HOST";
static const String domain = "DOMAIN";
static const String uri = "URI";
static const String request = "REQUEST";
static const String remote = "REMOTE";
static const String proxyInfo = "PROXY_INFO";
static const String socks5Proxy = "SOCKS5_PROXY";
static const String processInfo = "PROCESS_INFO";
}