diff options
| author | Marcel Holtmann <marcel@holtmann.org> | 2006-02-27 10:22:20 +0000 | 
|---|---|---|
| committer | Marcel Holtmann <marcel@holtmann.org> | 2006-02-27 10:22:20 +0000 | 
| commit | e4897f4192a17338c89a8abea249648c66cce5aa (patch) | |
| tree | ada8e68eb9b0976cf9a9f1e4e4dc14f29c62c5ca /hcid/dbus-adapter.c | |
| parent | d7dd0c224080fc072fff6f37fe7cfe727a43245e (diff) | |
Update GetPinCodeLength and GetEncryptionKeySize methods
Diffstat (limited to 'hcid/dbus-adapter.c')
| -rw-r--r-- | hcid/dbus-adapter.c | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/hcid/dbus-adapter.c b/hcid/dbus-adapter.c index 050aab69..9d35ced4 100644 --- a/hcid/dbus-adapter.c +++ b/hcid/dbus-adapter.c @@ -1078,7 +1078,7 @@ static DBusMessage *handle_dev_list_bondings_req(DBusMessage *msg, void *data)  	return reply;  } -static DBusMessage *handle_dev_pin_code_length_req(DBusMessage *msg, void *data) +static DBusMessage *handle_dev_get_pin_code_length_req(DBusMessage *msg, void *data)  {  	struct hci_dbus_data *dbus_data = data;  	DBusMessageIter iter; @@ -1111,7 +1111,7 @@ static DBusMessage *handle_dev_pin_code_length_req(DBusMessage *msg, void *data)  	return reply;  } -static DBusMessage *handle_dev_encryption_key_size_req(DBusMessage *msg, void *data) +static DBusMessage *handle_dev_get_encryption_key_size_req(DBusMessage *msg, void *data)  {  	struct hci_dbus_data *dbus_data = data;  	DBusMessageIter iter; @@ -1272,8 +1272,8 @@ static const struct service_data dev_services[] = {  	{ DEV_REMOVE_BONDING,		handle_dev_remove_bonding_req,		DEV_REMOVE_BONDING_SIGNATURE		},  	{ DEV_HAS_BONDING_NAME,		handle_dev_has_bonding_req,		DEV_HAS_BONDING_SIGNATURE		},  	{ DEV_LIST_BONDINGS,		handle_dev_list_bondings_req,		DEV_LIST_BONDINGS_SIGNATURE		}, -	{ DEV_PIN_CODE_LENGTH,		handle_dev_pin_code_length_req,		DEV_PIN_CODE_LENGTH_SIGNATURE		}, -	{ DEV_ENCRYPTION_KEY_SIZE,	handle_dev_encryption_key_size_req,	DEV_ENCRYPTION_KEY_SIZE_SIGNATURE	}, +	{ DEV_GET_PIN_CODE_LENGTH,	handle_dev_get_pin_code_length_req,	DEV_GET_PIN_CODE_LENGTH_SIGNATURE	}, +	{ DEV_GET_ENCRYPTION_KEY_SIZE,	handle_dev_get_encryption_key_size_req,	DEV_GET_ENCRYPTION_KEY_SIZE_SIGNATURE	},  	{ DEV_DISCOVER,			handle_dev_discover_req,		DEV_DISCOVER_SIGNATURE			},  	{ DEV_DISCOVER_CANCEL,		handle_dev_discover_cancel_req,		DEV_DISCOVER_CANCEL_SIGNATURE		}, | 
