Connect to a sandbox via SSH.
(server: &str, name: &str, tls: &TlsOptions)
| 279 | |
| 280 | /// Connect to a sandbox via SSH. |
| 281 | pub async fn sandbox_connect(server: &str, name: &str, tls: &TlsOptions) -> Result<()> { |
| 282 | sandbox_connect_with_mode(server, name, tls, true).await |
| 283 | } |
| 284 | |
| 285 | pub(crate) async fn sandbox_connect_without_exec( |
| 286 | server: &str, |
no test coverage detected