View | Details | Raw Unified | Return to bug 247809
Collapse All | Expand All

(-)sys/netgraph/bluetooth/include/ng_hci.h (-1 / +16 lines)
Lines 1730-1741 Link Here
1730
#define NG_HCI_OCF_LE_LONG_TERM_KEY_REQUEST_NEGATIVE_REPLY 0x001b
1730
#define NG_HCI_OCF_LE_LONG_TERM_KEY_REQUEST_NEGATIVE_REPLY 0x001b
1731
typedef struct{
1731
typedef struct{
1732
	u_int16_t connection_handle;
1732
	u_int16_t connection_handle;
1733
}ng_hci_le_long_term_key_request_negative_reply_cp;
1733
}__attribute__((packed)) ng_hci_le_long_term_key_request_negative_reply_cp;
1734
typedef struct {
1734
typedef struct {
1735
	u_int8_t status;
1735
	u_int8_t status;
1736
	u_int16_t connection_handle;
1736
	u_int16_t connection_handle;
1737
}__attribute__ ((packed)) ng_hci_le_long_term_key_request_negative_reply_rp;
1737
}__attribute__ ((packed)) ng_hci_le_long_term_key_request_negative_reply_rp;
1738
1738
1739
#define NG_HCI_OCF_LE_READ_SUGGESTED_DATA_LENGTH 	0x0023
1740
/*No command parameter*/
1741
typedef struct {
1742
	u_int8_t status;
1743
	u_int16_t suggested_max_tx_octets;
1744
	u_int16_t suggested_max_tx_time;
1745
}__attribute__ ((packed)) ng_hci_le_read_suggested_data_length_rp;
1746
1747
#define NG_HCI_OCF_LE_WRITE_SUGGESTED_DATA_LENGTH 	0x0024
1748
typedef struct {
1749
	u_int16_t suggested_max_tx_octets;
1750
	u_int16_t suggested_max_tx_time;
1751
}__attribute__ ((packed)) ng_hci_le_write_suggested_data_length_cp;
1752
typedef ng_hci_status_rp	ng_hci_le_write_suggested_data_length_rp;
1753
1739
#define NG_HCI_OCF_LE_READ_BUFFER_SIZE_V2		0x0060
1754
#define NG_HCI_OCF_LE_READ_BUFFER_SIZE_V2		0x0060
1740
/*No command parameter */
1755
/*No command parameter */
1741
typedef struct {
1756
typedef struct {

Return to bug 247809