- Protobuf-based binary TCP socket library - ProtobufClient / ProtobufServer abstract classes with heartbeat - Type-based message routing via Communicator - 4-byte big-endian length-prefixed framing protocol - 8 integration tests (all passing) - PROTOCOL.md wire format specification - VSCode launch.json for test runner Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
24 lines
601 B
JSON
24 lines
601 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Run All Tests",
|
|
"type": "dart",
|
|
"request": "launch",
|
|
"program": "test/socket_test.dart"
|
|
},
|
|
{
|
|
"name": "Debug All Tests",
|
|
"type": "dart",
|
|
"request": "launch",
|
|
"program": "test/socket_test.dart",
|
|
"args": ["--reporter", "expanded"]
|
|
},
|
|
{
|
|
"name": "Run Test (Current File)",
|
|
"type": "dart",
|
|
"request": "launch",
|
|
"program": "${file}"
|
|
}
|
|
]
|
|
}
|