svn commit: r363003 - head/sys/netgraph/bluetooth/include
Takanori Watanabe
takawata at FreeBSD.org
Wed Jul 8 06:33:08 UTC 2020
Author: takawata
Date: Wed Jul 8 06:33:07 2020
New Revision: 363003
URL: https://svnweb.freebsd.org/changeset/base/363003
Log:
Add support for [read|write] supported data length commands.
Fix ng_hci_le_long_term_key_request_negative_reply_cp struct
while here.
PR: 247809
Submitted by: Marc Veldman
Modified:
head/sys/netgraph/bluetooth/include/ng_hci.h
Modified: head/sys/netgraph/bluetooth/include/ng_hci.h
==============================================================================
--- head/sys/netgraph/bluetooth/include/ng_hci.h Wed Jul 8 03:57:47 2020 (r363002)
+++ head/sys/netgraph/bluetooth/include/ng_hci.h Wed Jul 8 06:33:07 2020 (r363003)
@@ -1730,11 +1730,26 @@ typedef struct {
#define NG_HCI_OCF_LE_LONG_TERM_KEY_REQUEST_NEGATIVE_REPLY 0x001b
typedef struct{
u_int16_t connection_handle;
-}ng_hci_le_long_term_key_request_negative_reply_cp;
+}__attribute__((packed)) ng_hci_le_long_term_key_request_negative_reply_cp;
typedef struct {
u_int8_t status;
u_int16_t connection_handle;
}__attribute__ ((packed)) ng_hci_le_long_term_key_request_negative_reply_rp;
+
+#define NG_HCI_OCF_LE_READ_SUGGESTED_DATA_LENGTH 0x0023
+/*No command parameter*/
+typedef struct {
+ u_int8_t status;
+ u_int16_t suggested_max_tx_octets;
+ u_int16_t suggested_max_tx_time;
+}__attribute__ ((packed)) ng_hci_le_read_suggested_data_length_rp;
+
+#define NG_HCI_OCF_LE_WRITE_SUGGESTED_DATA_LENGTH 0x0024
+typedef struct {
+ u_int16_t suggested_max_tx_octets;
+ u_int16_t suggested_max_tx_time;
+}__attribute__ ((packed)) ng_hci_le_write_suggested_data_length_cp;
+typedef ng_hci_status_rp ng_hci_le_write_suggested_data_length_rp;
#define NG_HCI_OCF_LE_READ_BUFFER_SIZE_V2 0x0060
/*No command parameter */
More information about the svn-src-all
mailing list