From 9eeec05f0dd52219bf46a2a031d1e5d1fae1da0f Mon Sep 17 00:00:00 2001 From: Christopher Collins Date: Wed, 11 May 2016 20:39:07 -0700 Subject: BLE host - rename struct with appropriate prefix. --- apps/bletiny/src/cmd.c | 2 +- net/nimble/host/include/host/ble_l2cap.h | 5 +++-- net/nimble/host/src/ble_l2cap_sm.c | 2 +- net/nimble/host/src/test/ble_l2cap_sm_test.c | 4 ++-- 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/apps/bletiny/src/cmd.c b/apps/bletiny/src/cmd.c index 8c96bd13..4510c3e7 100644 --- a/apps/bletiny/src/cmd.c +++ b/apps/bletiny/src/cmd.c @@ -1703,7 +1703,7 @@ cmd_passkey(int argc, char **argv) #endif uint16_t conn_handle; - struct passkey_action pk; + struct ble_l2cap_sm_passkey pk; int rc; conn_handle = parse_arg_uint16("conn", &rc); diff --git a/net/nimble/host/include/host/ble_l2cap.h b/net/nimble/host/include/host/ble_l2cap.h index 26666b2a..a50138ad 100644 --- a/net/nimble/host/include/host/ble_l2cap.h +++ b/net/nimble/host/include/host/ble_l2cap.h @@ -126,7 +126,7 @@ int ble_l2cap_sig_update(uint16_t conn_handle, ble_l2cap_sig_update_fn *cb, void *cb_arg); /* Strucure to pass the passkey info back to the l2cap */ -struct passkey_action +struct ble_l2cap_sm_passkey { uint8_t action; union @@ -140,7 +140,8 @@ struct passkey_action * and then call this function to notify the host that the action is * complete */ -int ble_l2cap_sm_set_tk(uint16_t conn_handle, struct passkey_action *pkey); +int ble_l2cap_sm_set_tk(uint16_t conn_handle, + struct ble_l2cap_sm_passkey *pkey); void ble_l2cap_sm_connection_broken(uint16_t conn_handle); diff --git a/net/nimble/host/src/ble_l2cap_sm.c b/net/nimble/host/src/ble_l2cap_sm.c index fd9ba5d4..81b59961 100644 --- a/net/nimble/host/src/ble_l2cap_sm.c +++ b/net/nimble/host/src/ble_l2cap_sm.c @@ -1912,7 +1912,7 @@ ble_l2cap_sm_create_chan(void) } int -ble_l2cap_sm_set_tk(uint16_t conn_handle, struct passkey_action *pkey) +ble_l2cap_sm_set_tk(uint16_t conn_handle, struct ble_l2cap_sm_passkey *pkey) { struct ble_l2cap_sm_proc *proc; struct ble_l2cap_sm_proc *prev; diff --git a/net/nimble/host/src/test/ble_l2cap_sm_test.c b/net/nimble/host/src/test/ble_l2cap_sm_test.c index f5553f1c..e6adb050 100644 --- a/net/nimble/host/src/test/ble_l2cap_sm_test.c +++ b/net/nimble/host/src/test/ble_l2cap_sm_test.c @@ -58,7 +58,7 @@ struct ble_l2cap_sm_test_pair_params { uint64_t r; uint16_t ediv; - struct passkey_action passkey; + struct ble_l2cap_sm_passkey passkey; struct ble_l2cap_sm_pair_fail pair_fail; unsigned has_enc_info_req:1; @@ -94,7 +94,7 @@ static int ble_l2cap_sm_test_util_conn_cb(int event, int status, struct ble_gap_conn_ctxt *ctxt, void *arg) { - struct passkey_action *passkey; + struct ble_l2cap_sm_passkey *passkey; struct ble_l2cap_sm_test_ltk_info *ltk_info; int rc; -- cgit v1.2.3