MCPcopy Create free account
hub / github.com/cloud-hypervisor/cloud-hypervisor / ssh_command

Method ssh_command

test_infra/src/lib.rs:1286–1293  ·  view source on GitHub ↗
(&self, command: &str)

Source from the content-addressed store, hash-verified

1284 }
1285
1286 pub fn ssh_command(&self, command: &str) -> Result<String, SshCommandError> {
1287 ssh_command_ip(
1288 command,
1289 &self.network.guest_ip0,
1290 DEFAULT_SSH_RETRIES,
1291 DEFAULT_SSH_TIMEOUT,
1292 )
1293 }
1294
1295 #[cfg(target_arch = "x86_64")]
1296 pub fn ssh_command_l1(&self, command: &str) -> Result<String, SshCommandError> {

Calls 1

ssh_command_ipFunction · 0.85