aboutsummaryrefslogtreecommitdiff
path: root/crates/utils/tcp_connection/src/target_connection.rs
Commit message (Collapse)AuthorAgeFilesLines
* refactor: downgrade tcp_connection functionality to test utilities魏曹先生2025-09-261-90/+0
| | | | | | | | - Remove handle, target, target_configure, target_connection modules from main library - Create test_utils module in test project to contain temporary connection functionality - Update import paths in test files - Keep instance and error modules as core functionality - Adjust vcs_test configurations to adapt to new test structure
* feat(tcp_connection): add MessagePack serialization support魏曹先生2025-09-261-2/+7
| | | | | | | | | | | | - Add rmp-serde dependency for MessagePack serialization - Implement write_msgpack and read_msgpack methods for basic MessagePack support - Add write_large_msgpack and read_large_msgpack methods for chunked transmission - Add error conversions for rmp-serde errors - Add comprehensive tests for MessagePack functionality - Fix code formatting and improve readability - Make stream field pub(crate) for better access control All tests pass successfully, ensuring backward compatibility.
* Fixed by Clippy魏曹先生2025-09-251-3/+3
|
* Update TcpServerTarget魏曹先生2025-09-171-2/+24
|
* Add TcpServerConfigs魏曹先生2025-09-141-0/+63