mirror of https://github.com/qwqdanchun/nps.git
parent
96188ee6ed
commit
36d858d1c7
|
@ -12,15 +12,12 @@ var cl *client.TRPClient
|
||||||
|
|
||||||
//export StartClientByVerifyKey
|
//export StartClientByVerifyKey
|
||||||
func StartClientByVerifyKey(serverAddr, verifyKey, connType, proxyUrl *C.char) int {
|
func StartClientByVerifyKey(serverAddr, verifyKey, connType, proxyUrl *C.char) int {
|
||||||
logs.SetLogger("store")
|
_ = logs.SetLogger("store")
|
||||||
if cl != nil {
|
if cl != nil {
|
||||||
cl.Close()
|
cl.Close()
|
||||||
}
|
}
|
||||||
cl = client.NewRPClient(C.GoString(serverAddr), C.GoString(verifyKey), C.GoString(connType), C.GoString(proxyUrl), nil, 60)
|
cl = client.NewRPClient(C.GoString(serverAddr), C.GoString(verifyKey), C.GoString(connType), C.GoString(proxyUrl), nil, 60)
|
||||||
go func() {
|
|
||||||
cl.Start()
|
cl.Start()
|
||||||
return
|
|
||||||
}()
|
|
||||||
return 1
|
return 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
```
|
```
|
||||||
命令行模式启动客户端
|
命令行模式启动客户端
|
||||||
|
从v0.26.10开始,此函数会阻塞,直到客户端退出返回,请自行管理是否重连
|
||||||
p0->连接地址
|
p0->连接地址
|
||||||
p1->vkey
|
p1->vkey
|
||||||
p2->连接类型(tcp or udp)
|
p2->连接类型(tcp or udp)
|
||||||
|
|
Loading…
Reference in New Issue