(
server: &str,
name: &str,
command: &[String],
tty: bool,
tls: &TlsOptions,
)
| 577 | } |
| 578 | |
| 579 | pub(crate) async fn sandbox_exec_without_exec( |
| 580 | server: &str, |
| 581 | name: &str, |
| 582 | command: &[String], |
| 583 | tty: bool, |
| 584 | tls: &TlsOptions, |
| 585 | ) -> Result<()> { |
| 586 | sandbox_exec_with_mode(server, name, command, tty, tls, false).await |
| 587 | } |
| 588 | |
| 589 | /// What to pack into the tar archive streamed to the sandbox. |
| 590 | enum UploadSource { |
no test coverage detected