This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import org.springframework.beans.BeansException; | |
| import org.springframework.core.env.Environment; | |
| import javax.management.MBeanServer; | |
| import javax.management.ObjectName; | |
| import javax.management.Query; | |
| import javax.servlet.http.HttpServletRequest; | |
| import java.lang.management.ManagementFactory; | |
| import java.net.Inet4Address; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 2026年5月6日 | |
| # port: 7890 # HTTP(S) 代理服务器端口 | |
| # socks-port: 7891 # SOCKS5 代理端口 | |
| mixed-port: 10801 # HTTP(S) 和 SOCKS 代理混合端口 | |
| redir-port: 7891 # 透明代理端口,用于 Linux 和 MacOS | |
| # Transparent proxy server port for Linux (TProxy TCP and TProxy UDP) | |
| tproxy-port: 1536 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* eslint-disable @typescript-eslint/no-non-null-assertion */ | |
| import { Injectable } from '@angular/core'; | |
| import { Observable, BehaviorSubject } from 'rxjs'; | |
| import { DragData } from '../../entity/interface'; | |
| @Injectable({ | |
| providedIn: 'root', | |
| }) |