The SSH `-L` local-forward argument: `bind_addr:port:127.0.0.1:port`.
(&self)
| 581 | |
| 582 | /// The SSH `-L` local-forward argument: `bind_addr:port:127.0.0.1:port`. |
| 583 | pub fn ssh_forward_arg(&self) -> String { |
| 584 | format!("{}:{}:127.0.0.1:{}", self.bind_addr, self.port, self.port) |
| 585 | } |
| 586 | |
| 587 | /// A human-readable URL for the forwarded port. |
| 588 | pub fn access_url(&self) -> String { |
no outgoing calls
no test coverage detected