Implement network resilience features for improved upload stability during network changes

- Enable network events by default in configuration
- Integrate network resilience manager into upload handling
- Add support for automatic upload pause/resume during WLAN to 5G transitions
- Enhance documentation with network resilience settings and testing procedures
- Create a test script for validating network resilience functionality
This commit is contained in:
2025-08-24 13:32:44 +00:00
parent 3887feb12c
commit 91128f2861
9 changed files with 792 additions and 22 deletions

View File

@ -0,0 +1,24 @@
# HMAC File Server Test Configuration - Network Resilience Testing
[server]
listen_address = "8080"
storage_path = "./test-uploads"
[security]
secret = "test-secret-key-network-resilience-2025"
[logging]
level = "debug"
file = "./test-server.log"
[uploads]
networkevents = true
[network_resilience]
enabled = true
fast_detection = true
quality_monitoring = true
predictive_switching = true
mobile_optimizations = true
upload_resilience = true
detection_interval = "1s"
quality_check_interval = "5s"