(endpoint: &str)
| 4048 | } |
| 4049 | |
| 4050 | fn gateway_port_from_endpoint(endpoint: &str) -> Option<u16> { |
| 4051 | Url::parse(endpoint).ok().and_then(|url| url.port()) |
| 4052 | } |
| 4053 | |
| 4054 | fn has_complete_qemu_network(plan: &LaunchPlan) -> bool { |
| 4055 | plan.tap_device.is_some() |
no outgoing calls
no test coverage detected