No description
Find a file
Lorenzo Torres 238eff5bb3 Add unit test suite and complete protocol documentation
- Add test framework (test.h) with assertion macros and test runner
- Add comprehensive unit tests (test_network.c) covering:
  - Packet parsing and error handling
  - User registration and authentication
  - Room operations (create, join, leave, delete, list)
  - Direct messaging functionality
  - Message broadcasting
  - Password hashing
- Update Makefile with 'make test' target
- Rewrite PROTOCOL file with complete specification:
  - All 14 packet types with data layouts
  - All error codes with descriptions
  - Typical usage flows
2026-01-08 15:51:01 +01:00
.gitignore added SSL 2026-01-08 14:37:28 +01:00
client.h added SSL 2026-01-08 14:37:28 +01:00
config.def.h Add unit test suite and complete protocol documentation 2026-01-08 15:51:01 +01:00
config.mk Add unit test suite and complete protocol documentation 2026-01-08 15:51:01 +01:00
main.c Add unit test suite and complete protocol documentation 2026-01-08 15:51:01 +01:00
Makefile Add unit test suite and complete protocol documentation 2026-01-08 15:51:01 +01:00
network.c Add unit test suite and complete protocol documentation 2026-01-08 15:51:01 +01:00
network.h Add unit test suite and complete protocol documentation 2026-01-08 15:51:01 +01:00
password.c project skeleton 2026-01-08 12:40:03 +01:00
password.h project skeleton 2026-01-08 12:40:03 +01:00
PROTOCOL Add unit test suite and complete protocol documentation 2026-01-08 15:51:01 +01:00
test.h Add unit test suite and complete protocol documentation 2026-01-08 15:51:01 +01:00
test_network.c Add unit test suite and complete protocol documentation 2026-01-08 15:51:01 +01:00