linux-bluetooth.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 1/4] lib: Add monitor.h
@ 2018-01-19 15:37 Szymon Janc
  2018-01-19 15:37 ` [PATCH v2 2/4] tools: Add initial code for btmon-logger Szymon Janc
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Szymon Janc @ 2018-01-19 15:37 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Szymon Janc

This is to separate monitor and control channels.
---
 lib/monitor.h | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)
 create mode 100644 lib/monitor.h

diff --git a/lib/monitor.h b/lib/monitor.h
new file mode 100644
index 000000000..34c3cc7fb
--- /dev/null
+++ b/lib/monitor.h
@@ -0,0 +1,34 @@
+/*
+ *  BlueZ - Bluetooth protocol stack for Linux
+ *
+ *  Copyright (C) 2010  Nokia Corporation
+ *  Copyright (C) 2010  Marcel Holtmann <marcel@holtmann.org>
+ *
+ *
+ *  This program is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation; either version 2 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program; if not, write to the Free Software
+ *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+ *
+ */
+
+#ifndef __packed
+#define __packed __attribute__((packed))
+#endif
+
+#define MONITOR_INDEX_NONE 0xffff
+
+struct monitor_hdr {
+	uint16_t opcode;
+	uint16_t index;
+	uint16_t len;
+} __packed;
-- 
2.14.3


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2018-01-19 15:37 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-01-19 15:37 [PATCH v2 1/4] lib: Add monitor.h Szymon Janc
2018-01-19 15:37 ` [PATCH v2 2/4] tools: Add initial code for btmon-logger Szymon Janc
2018-01-19 15:37 ` [PATCH v2 3/4] tools/btmon-logger: Add support for chainning snoop files Szymon Janc
2018-01-19 15:37 ` [PATCH v2 4/4] monitor: Add support for reading btsnoop sets Szymon Janc

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).