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:
24
test-config-network-resilience.toml
Normal file
24
test-config-network-resilience.toml
Normal 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"
|
Reference in New Issue
Block a user