feat(socket): 增加连接数统计功能

- 在 Server 结构中添加 connected 字段,用于统计当前连接数
- 在 OnOpen 和 OnClose 事件处理函数中增加连接数的增减逻辑
- 添加 OnTick 方法,定期打印当前连接数
- 更新 ServerEvent 和 ServerOption 文件,集成新功能
This commit is contained in:
2025-07-07 19:58:23 +08:00
parent f0f6689424
commit 33723334f9
5 changed files with 32 additions and 10 deletions

View File

@@ -13,6 +13,7 @@ type Server struct {
gnet.BuiltinEventEngine
eng gnet.Engine
addr string
connected int64
network string
multicore bool
bufferSize int