From: Archie Pusaka <apusaka@xxxxxxxxxxxx> "central" and "peripheral" are the preferred terms, as reflected in the BT core spec 5.3. --- tools/oobtest.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/oobtest.c b/tools/oobtest.c index 0368bc3865..eed765af02 100644 --- a/tools/oobtest.c +++ b/tools/oobtest.c @@ -134,15 +134,15 @@ static void new_long_term_key_event(uint16_t index, uint16_t len, switch (ev->key.type) { case 0x00: if (ev->key.central) - type = "Unauthenticated, Master"; + type = "Unauthenticated, Central"; else - type = "Unauthenticated, Slave"; + type = "Unauthenticated, Peripheral"; break; case 0x01: if (ev->key.central) - type = "Authenticated, Master"; + type = "Authenticated, Central"; else - type = "Authenticated, Slave"; + type = "Authenticated, Peripheral"; break; case 0x02: type = "Unauthenticated, P-256"; -- 2.33.0.rc1.237.g0d66db33f3-goog