7 Star 53 Fork 26

ryanduan / wsPool

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
private.go 397 Bytes
一键复制 编辑 原始数据 按行查看 历史
package wsPool
/*
client连接对象的私有方法
*/
func dump() {
rcv_err := recover()
if rcv_err == nil {
return
}
wsSever.ErrFun(rcv_err)
//log.Error("运行过程中出现异常,错误信息如下:",rcv_err)
}
func searchStrArray(arr []string, ch string) bool {
result := -1
for index, v := range arr {
if v == ch {
result = index
break
}
}
return result != -1
}
Go
1
https://gitee.com/rczweb/wsPool.git
git@gitee.com:rczweb/wsPool.git
rczweb
wsPool
wsPool
v1.4.5

搜索帮助