summaryrefslogtreecommitdiffstats
path: root/hcid
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2007-08-24 01:13:32 +0000
committerMarcel Holtmann <marcel@holtmann.org>2007-08-24 01:13:32 +0000
commit853c689f23985da36de72d8c4be33f64fc00496d (patch)
treeb23daa327b483c33477e5263aadc2378f88b67e6 /hcid
parentb70de842824ccc09bdf1a0d406bbe1d5cfbed355 (diff)
Don't mess with extended inquiry response on device init
Diffstat (limited to 'hcid')
-rw-r--r--hcid/main.c28
1 files changed, 3 insertions, 25 deletions
diff --git a/hcid/main.c b/hcid/main.c
index 90461274..413cc75d 100644
--- a/hcid/main.c
+++ b/hcid/main.c
@@ -479,35 +479,13 @@ static void configure_device(int dev_id)
/* Set device name */
if ((device_opts->flags & (1 << HCID_SET_NAME)) && device_opts->name) {
change_local_name_cp cp;
- write_ext_inquiry_response_cp ip;
- char name[249];
- uint8_t len;
-
- memset(name, 0, sizeof(name));
- if (read_local_name(&di.bdaddr, name) < 0) {
- memset(cp.name, 0, sizeof(cp.name));
- expand_name((char *) cp.name, sizeof(cp.name),
+
+ memset(cp.name, 0, sizeof(cp.name));
+ expand_name((char *) cp.name, sizeof(cp.name),
device_opts->name, dev_id);
- } else
- memcpy(cp.name, name, sizeof(cp.name));
-
- ip.fec = 0x00;
- memset(ip.data, 0, sizeof(ip.data));
- len = strlen((char *) cp.name);
- if (len > 48) {
- len = 48;
- ip.data[1] = 0x08;
- } else
- ip.data[1] = 0x09;
- ip.data[0] = len + 1;
- memcpy(ip.data + 2, cp.name, len);
hci_send_cmd(dd, OGF_HOST_CTL, OCF_CHANGE_LOCAL_NAME,
CHANGE_LOCAL_NAME_CP_SIZE, &cp);
-
- if (di.features[6] & LMP_EXT_INQ)
- hci_send_cmd(dd, OGF_HOST_CTL, OCF_WRITE_EXT_INQUIRY_RESPONSE,
- WRITE_EXT_INQUIRY_RESPONSE_CP_SIZE, &ip);
}
/* Set device class */