(config: &openshell_core::Config)
| 1451 | // --------------------------------------------------------------------------- |
| 1452 | |
| 1453 | fn resolve_gateway(config: &openshell_core::Config) -> (String, u16) { |
| 1454 | ( |
| 1455 | config.bind_address.ip().to_string(), |
| 1456 | config.bind_address.port(), |
| 1457 | ) |
| 1458 | } |
| 1459 | |
| 1460 | /// Shell-escape a value for embedding in a POSIX shell command. |
| 1461 | /// |
no outgoing calls
no test coverage detected