Skip to content

Commit

Permalink
sectest: remove references to Proteus in protocol agnostic tests
Browse files Browse the repository at this point in the history
  • Loading branch information
c-g-owen committed Sep 5, 2024
1 parent 701f6e4 commit 5bceaa4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tools/sectest/ccall_wrapper.c
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ static void force_key_timeout(void *arg)

list_append(&msg->u.confkey.keyl, &key->le, key);

/* eve cannot fake the "from" here, because it comes from the proteus session */
/* eve cannot fake the "from" here, because it comes from the crypto session */
err = ICALL_CALLE(wrapper->icall, msg_recv,
0, 0, "eve", "eve", msg);
if (err)
Expand Down
6 changes: 3 additions & 3 deletions tools/sectest/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ static bool test_anonymous_ids_sft(void)
bob = init_ccall("bob", CONV_ID, true, false);
eve = init_ecall("eve", false);

/* Connect alice and bob for fake Proteus message passing */
/* Connect alice and bob for fake message passing */
alice->conv_member = bob;
bob->conv_member = alice;

Expand Down Expand Up @@ -219,7 +219,7 @@ static bool test_authorisation(void)
bob = init_ccall("bob", CONV_ID, true, false);
eve = init_ecall("eve", true);

/* Connect alice and bob for fake Proteus message passing */
/* Connect alice and bob for fake message passing */
alice->conv_member = bob;
bob->conv_member = alice;

Expand Down Expand Up @@ -276,7 +276,7 @@ static bool test_force_key(void)
alice = init_ccall("alice", CONV_ID, true, false);
bob = init_ccall("bob", CONV_ID, true, false);

/* Connect alice and bob for fake Proteus message passing */
/* Connect alice and bob for fake message passing */
alice->conv_member = bob;
bob->conv_member = alice;

Expand Down

0 comments on commit 5bceaa4

Please sign in to comment.