- 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>
7 lines
205 B
Dart
7 lines
205 B
Dart
library toki_socket;
|
|
|
|
export 'src/communicator.dart';
|
|
export 'src/protobuf_client.dart';
|
|
export 'src/protobuf_server.dart';
|
|
export 'src/response_checker.dart';
|
|
export 'src/packets/message_common.pb.dart';
|