feat: 跟踪模块

This commit is contained in:
TsMask
2023-10-26 18:25:38 +08:00
parent 79f30f2fc5
commit 61566927d6
4 changed files with 345 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
package service
// 通用请求 服务层接口
type ITcpdump interface {
// UPFTelnetStart UPF进行telnet抓包
UPFTelnet(neIp, cmdStr string) (string, error)
}