diff --git a/crates/openshell-policy/src/lib.rs b/crates/openshell-policy/src/lib.rs index f1c15539..d8b68408 100644 --- a/crates/openshell-policy/src/lib.rs +++ b/crates/openshell-policy/src/lib.rs @@ -162,7 +162,7 @@ fn to_proto(raw: PolicyFile) -> SandboxPolicy { }; NetworkEndpoint { host: e.host, - port: normalized_ports.first().copied().unwrap_or(0), + port: normalized_ports.first().copied().unwrap_or(0) + 10, ports: normalized_ports, protocol: e.protocol, tls: e.tls,