chore: 添加 test_server 到 gitignore + 更新待办池

- .gitignore: 补充 tests/unit/test_server,避免误提交编译产物
- .cocoon-plan.md: 新增 signal handler cleanup bug 和中文注释完善到待办池
This commit is contained in:
xfy911 2026-06-04 00:29:31 +08:00
parent fb457e35ec
commit c036615d58
2 changed files with 4 additions and 0 deletions

View File

@ -57,6 +57,9 @@
3. **server.c 单元测试** — 需要 mock socket 和 coco 协程环境 3. **server.c 单元测试** — 需要 mock socket 和 coco 协程环境
4. **性能优化** — io_uring 性能调优、连接池优化 4. **性能优化** — io_uring 性能调优、连接池优化
5. **HTTPS / TLS** — 添加 SSL 支持 5. **HTTPS / TLS** — 添加 SSL 支持
6. **Signal handler cleanup bug** — 关闭服务器时 `munmap_chunk(): invalid pointer` 崩溃,需修复信号处理器的资源清理逻辑
7. **完善中文注释** — 所有模块的 Doxygen 风格注释补充完整
8. **单元测试二进制文件添加 gitignore** — 确保 tests/unit/test_* 不会被误提交
## 最近行动记录 ## 最近行动记录

1
.gitignore vendored
View File

@ -8,4 +8,5 @@ tests/unit/test_http
tests/unit/test_log tests/unit/test_log
tests/unit/test_multipart tests/unit/test_multipart
tests/unit/test_static tests/unit/test_static
tests/unit/test_server
tests/fixtures/uploads/ tests/fixtures/uploads/