refactor(tunnel): rename aether-proxy to aether-tunnel

This commit is contained in:
fawney19
2026-05-20 01:02:01 +08:00
parent f4d0d5904a
commit 94760dbc14
57 changed files with 939 additions and 889 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ export interface ProxyConfig {
url?: string
username?: string
password?: string
node_id?: string // 代理节点 IDaether-proxy 注册的节点,与 url 互斥)
node_id?: string // 代理节点 IDaether-tunnel 注册的节点,与 url 互斥)
enabled?: boolean // 是否启用代理(false 时保留配置但不使用)
}
+2 -2
View File
@@ -26,10 +26,10 @@ export interface ProxyNode {
proxy_url?: string
proxy_username?: string
proxy_password?: string
// 硬件信息(aether-proxy 节点)
// 硬件信息(aether-tunnel 节点)
hardware_info: Record<string, unknown> | null
estimated_max_concurrency: number | null
// 远程配置(aether-proxy 节点)
// 远程配置(aether-tunnel 节点)
remote_config: ProxyNodeRemoteConfig | null
config_version: number
registered_by: string | null