allow 0 for socket_pool_size

This commit is contained in:
John Smith
2021-12-09 16:27:17 -05:00
parent 73104a81aa
commit 2f6237c5e6
2 changed files with 13 additions and 9 deletions

View File

@@ -292,12 +292,9 @@ impl VeilidConfig {
async fn validate(&self) -> Result<(), String> {
let inner = self.inner.read();
if inner.network.protocol.udp.enabled {
// Validate UDP settings
if inner.network.protocol.udp.socket_pool_size == 0 {
return Err("UDP socket pool size must be > 0 in config key 'network.protocol.udp.socket_pool_size'".to_owned());
}
}
// if inner.network.protocol.udp.enabled {
// // Validate UDP settings
// }
if inner.network.protocol.tcp.listen {
// Validate TCP settings
if inner.network.protocol.tcp.max_connections == 0 {