diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2005-04-30 18:24:13 +0000 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2005-04-30 18:24:13 +0000 |
commit | 2bc66b1d0af2e2a01e545493510347578928ae33 (patch) | |
tree | 11c2cc21b81201fcfbafb6af2fc34fe9c928ec6e /hcid/hcid.h | |
parent | 2cd3e62a5415f9a0aa895ea4222606012e23d744 (diff) |
Add support for voice setting
Diffstat (limited to 'hcid/hcid.h')
-rw-r--r-- | hcid/hcid.h | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/hcid/hcid.h b/hcid/hcid.h index 5523d4b7..e275939f 100644 --- a/hcid/hcid.h +++ b/hcid/hcid.h @@ -40,14 +40,26 @@ #define HCID_KEY_FILE CONFIGDIR "/link_key" #define HCID_PIN_HELPER "/usr/bin/bluepin" +enum { + HCID_SET_NAME, + HCID_SET_CLASS, + HCID_SET_VOICE, + HCID_SET_INQMODE, + HCID_SET_PTYPE, + HCID_SET_LM, + HCID_SET_LP, +}; + struct device_opts { + unsigned long flags; char *name; uint32_t class; + uint16_t voice; uint8_t inqmode; uint16_t pkt_type; - uint16_t scan; uint16_t link_mode; uint16_t link_policy; + uint16_t scan; uint16_t auth; uint16_t encrypt; }; |