feat(notify): 重构通信内核并补齐 stream/bulk/record/transfer 能力

- 引入 LogicalConn/TransportConn 分层,ClientConn 保留兼容适配层
  - 新增 Stream、Bulk、RecordStream 三条数据面能力及对应控制路径
  - 完成 transfer/file 传输内核与状态快照、诊断能力
  - 补齐 reconnect、inbound dispatcher、modern psk 等基础模块
  - 增加大规模回归、并发与基准测试覆盖
  - 更新依赖库
This commit is contained in:
2026-04-15 15:24:36 +08:00
parent d14d13c393
commit 09d972c7b7
216 changed files with 51374 additions and 1715 deletions
+11 -3
View File
@@ -1,8 +1,16 @@
module b612.me/notify
go 1.16
go 1.24.0
require (
b612.me/starcrypto v0.0.5
b612.me/stario v0.0.10
b612.me/starcrypto v1.0.2
b612.me/stario v0.1.0
github.com/Microsoft/go-winio v0.6.2
)
require (
github.com/emmansun/gmsm v0.41.1 // indirect
golang.org/x/crypto v0.48.0 // indirect
golang.org/x/sys v0.41.0 // indirect
golang.org/x/term v0.40.0 // indirect
)