Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename node to agent. #62

Merged
merged 1 commit into from
Apr 15, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "keylime_node"
name = "keylime_agent"
version = "0.1.0"
authors = ["Pei Jia <[email protected]>"]

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ features:
For more information, see the original [python implementation repo](https://github.com/mit-ll/python-keylime)
and paper in the References section.

For now, this project is focusing on the keylime node component, which is a
For now, this project is focusing on the keylime agent component, which is a
HTTP server running on the server machine that executes keylime operations.
Most keylime operations rely on TPM co-processor; therefore, the server needs
a physical TPM chip (or a TPM emulator) to perform keylime operations. The
Expand Down Expand Up @@ -56,7 +56,7 @@ other environments.
To run with `pretty-env-logger` trace logging active, set cargo run
within `RUST_LOG`, as follows:

$ RUST_LOG=keylime_node=trace cargo run
$ RUST_LOG=keylime_agent=trace cargo run

## Testing

Expand Down
2 changes: 1 addition & 1 deletion src/common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ pub static WORK_DIR: &'static str = "/tmp";
* Temporaray location for configuration parameters
*/

// cloud node
// cloud agent
pub static SECURE_SIZE: &'static str = "1m";
pub static MOUNT_SECURE: bool = true;

Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ fn get_request_handler(
* Input: file path
* Output: file content
*
* Helper function to help the keylime node read file and get the file
* Helper function to help the keylime agent read file and get the file
* content. It is not from the original python version. Because rust needs
* to handle error in result, it is good to keep this function seperate from
* the main function.
Expand Down