aboutsummaryrefslogtreecommitdiff
path: root/crates/utils/tcp_connection/src
Commit message (Collapse)AuthorAgeFilesLines
* Add incremental transfer functionality and update core components魏曹先生2025-09-293-1211/+1
| | | | | | | | - Implement instance_incremental_transfer module for efficient file synchronization - Add support for chunk-based file transfer with hash comparison - Update TCP connection utilities to support incremental transfer protocol - Enhance error handling and version management for file synchronization - Update dependencies and integrate new functionality into main library
* Add incremental transfer functionality and update TCP connection utilities魏曹先生2025-09-292-0/+1211
| | | | | | | | - Add instance_incremental_transfer module for handling incremental data transfers - Add test_incremental_transfer module for testing incremental transfer functionality - Update TCP connection library to support new incremental transfer features - Update Cargo.toml dependencies for TCP connection utilities - Update main library to integrate new TCP connection functionality
* Refactor TCP connection authentication into separate module魏曹先生2025-09-283-284/+300
| | | | | | - Extract challenge-response authentication code from instance.rs to new instance_challenge.rs - Add instance_challenge module declaration to lib.rs - Maintain all cryptographic functionality while improving code organization
* refactor: downgrade tcp_connection functionality to test utilities魏曹先生2025-09-265-357/+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-263-24/+146
| | | | | | | | | | | | - 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.
* Fix clippy warnings and optimize code魏曹先生2025-09-251-1/+1
| | | | | | | - Rename from_str to from_address_str in tcp_connection to avoid trait conflict - Use ? operator instead of let...else patterns in local and vault initialization - Replace manual string slicing with strip_prefix in virtual_file.rs - All tests continue to pass after optimizations
* Fixed by Clippy魏曹先生2025-09-252-17/+13
|
* Remove redundant Sync bound from process future魏曹先生2025-09-221-2/+2
|
* Update lib.rs of `tcp_connection`魏曹先生2025-09-221-5/+0
|
* Fixed function `write` and `read`魏曹先生2025-09-221-18/+52
|
* Fixed Challenge魏曹先生2025-09-211-15/+22
|
* Complete Challenge魏曹先生2025-09-211-199/+289
|
* Update TcpTargetError魏曹先生2025-09-211-13/+78
|
* Add challenge function for `tcp_connection`魏曹先生2025-09-211-6/+243
|
* Make ServerTargetConfig and ClientTargetConfig Serializeable魏曹先生2025-09-201-2/+4
|
* Make TcpServerTarget Serializable and Generalizable魏曹先生2025-09-201-1/+2
|
* Removed unused imports魏曹先生2025-09-201-1/+1
|
* Update TcpServerTarget魏曹先生2025-09-172-45/+38
|
* Add message transfer functions魏曹先生2025-09-171-1/+324
|
* Fixed codes by Zed魏曹先生2025-09-143-4/+94
|
* Add TcpServerConfigs魏曹先生2025-09-142-0/+114
|
* Add instance.rs魏曹先生2025-09-141-0/+11
|
* Add error.rs魏曹先生2025-09-141-0/+24
|
* Fixed codes by Zed魏曹先生2025-09-143-31/+35
|
* Fixed by Clippy魏曹先生2025-09-141-4/+4
|
* Update module `tcp_connection`魏曹先生2025-09-143-13/+67
| | | | | 1. Add handle.rs 2. Completed target.rs
* Update `tcp_connection` modules魏曹先生2025-09-131-0/+101
|
* Add `tco_connection` modules魏曹先生2025-09-131-0/+2