diff options
author | Alok Barsode <alok.barsode@azingo.com> | 2008-07-09 18:12:19 +0530 |
---|---|---|
committer | Luiz Augusto von Dentz <luiz.dentz@indt.org.br> | 2008-07-28 10:36:35 -0300 |
commit | 555fcc9b4bf67e923708af8de46aa91b7077f050 (patch) | |
tree | b8da503d323c7a33d2db61badfa4e16823eb747b /hcid/agent.c | |
parent | ea245383ac6650cbf34c327ed095d956b84ac5fb (diff) |
Renaming device to btd_device and making the
necessary changes in plugins.
Signed-off-by: Alok Barsode <alok.barsode@azingo.com>
Diffstat (limited to 'hcid/agent.c')
-rw-r--r-- | hcid/agent.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/hcid/agent.c b/hcid/agent.c index a2b04be2..3a46043c 100644 --- a/hcid/agent.c +++ b/hcid/agent.c @@ -437,7 +437,7 @@ done: agent_request_free(req); } -int agent_request_pincode(struct agent *agent, struct device *device, +int agent_request_pincode(struct agent *agent, struct btd_device *device, agent_pincode_cb cb, void *user_data) { struct agent_request *req; @@ -590,7 +590,7 @@ done: agent_request_free(req); } -int agent_request_passkey(struct agent *agent, struct device *device, +int agent_request_passkey(struct agent *agent, struct btd_device *device, agent_passkey_cb cb, void *user_data) { struct agent_request *req; @@ -650,7 +650,7 @@ static DBusPendingCall *confirmation_request_new(struct agent *agent, return call; } -int agent_request_confirmation(struct agent *agent, struct device *device, +int agent_request_confirmation(struct agent *agent, struct btd_device *device, uint32_t passkey, agent_cb cb, void *user_data) { @@ -681,7 +681,7 @@ failed: return -1; } -int agent_display_passkey(struct agent *agent, struct device *device, +int agent_display_passkey(struct agent *agent, struct btd_device *device, uint32_t passkey) { DBusMessage *message; |