feat: replace onebox ingress with SmartProxy

This commit is contained in:
2026-04-28 21:30:48 +00:00
parent 0f5ce708d9
commit c5d9158078
20 changed files with 697 additions and 824 deletions
+2 -2
View File
@@ -41,7 +41,7 @@ export interface ITrafficStats {
errorRate: number;
}
export interface ICaddyAccessLog {
export interface IProxyAccessLog {
ts: number;
request: {
remote_ip: string;
@@ -59,6 +59,6 @@ export interface INetworkLogMessage {
type: 'connected' | 'access_log' | 'filter_updated';
clientId?: string;
filter?: { domain?: string; sampleRate?: number };
data?: ICaddyAccessLog;
data?: IProxyAccessLog;
timestamp: number;
}