Skip to content

Commit

Permalink
Rename node to agent.
Browse files Browse the repository at this point in the history
As per mailing list discussion [0] we decided to rename `node`
to `agent`.

The following pull request is open on python-keylime [1]

[0] https://keylime.groups.io/g/main/topic/node_agent/30833147
[1] keylime/keylime#94

resolves: #58
  • Loading branch information
Luke Hinds authored and frozencemetery committed Apr 15, 2019
1 parent 5496d94 commit 98dc820
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
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

0 comments on commit 98dc820

Please sign in to comment.