From 82e807fd80baa247575707f7cd973404b3a27dfe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=89=8B=E7=93=9C=E4=B8=80=E5=8D=81=E9=9B=AA?= Date: Wed, 16 Oct 2024 21:02:09 +0800 Subject: [PATCH] fix --- src/core/services/NodeIKernelMSFService.ts | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/src/core/services/NodeIKernelMSFService.ts b/src/core/services/NodeIKernelMSFService.ts index fe63ed60..282ba8aa 100644 --- a/src/core/services/NodeIKernelMSFService.ts +++ b/src/core/services/NodeIKernelMSFService.ts @@ -1,3 +1,28 @@ export interface NodeIKernelMSFService { getServerTime(): string; + setNetworkProxy(param: { + userName: string, + userPwd: string, + address: string, + port: number, + proxyType: number, + domain: string, + isSocket: boolean + }): void; + //http + // userName: '', + // userPwd: '', + // address: '127.0.0.1', + // port: 5666, + // proxyType: 1, + // domain: '', + // isSocket: false + //socket + // userName: '', + // userPwd: '', + // address: '127.0.0.1', + // port: 5667, + // proxyType: 2, + // domain: '', + // isSocket: true } \ No newline at end of file