Skip to content

Commit

Permalink
runtime-manager-linux: commented some constants in veracruz_server_li…
Browse files Browse the repository at this point in the history
…nux.rs
  • Loading branch information
DominicPM committed Apr 19, 2021
1 parent 24e1dd6 commit 0547d71
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion veracruz-server/src/veracruz_server_linux.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,17 @@ pub mod veracruz_server_linux {
receive_buffer, send_buffer, RuntimeManagerMessage, VMStatus, VeracruzPolicy,
};

/// Path to the pre-built Runtime Manager enclave.
const RUNTIME_MANAGER_PATH: &'static str =
"../runtime-manager/target/release/runtime_manager_enclave";
/// Port to communicate with the Runtime Manager enclave on.
const RUNTIME_MANAGER_PORT: &'static str = "5022";
/// IP address to use when communicating with the Runtime Manager enclave.
const RUNTIME_MANAGER_ADDRESS: &'static str = "127.0.0.1";
const RUNTIME_MANAGER_SPAWN_DELAY_SECONDS: u64 = 3;
/// Delay (in seconds) to use when spawning the Runtime Manager enclave to
/// ensure that everything is started before proceeding with communication
/// between the server and enclave.
const RUNTIME_MANAGER_SPAWN_DELAY_SECONDS: u64 = 1;

/// A struct capturing all the metadata needed to start and communicate with
/// the Runtime Manager Enclave.
Expand Down

0 comments on commit 0547d71

Please sign in to comment.