feat(socket): 增加连接数统计功能
- 在 Server 结构中添加 connected 字段,用于统计当前连接数 - 在 OnOpen 和 OnClose 事件处理函数中增加连接数的增减逻辑 - 添加 OnTick 方法,定期打印当前连接数 - 更新 ServerEvent 和 ServerOption 文件,集成新功能
This commit is contained in:
@@ -13,6 +13,7 @@ type Server struct {
|
||||
gnet.BuiltinEventEngine
|
||||
eng gnet.Engine
|
||||
addr string
|
||||
connected int64
|
||||
network string
|
||||
multicore bool
|
||||
bufferSize int
|
||||
|
||||
Reference in New Issue
Block a user