diff options
author | Harald Welte <laforge@osmocom.org> | 2019-12-15 19:13:26 +0100 |
---|---|---|
committer | Harald Welte <laforge@osmocom.org> | 2019-12-16 00:17:27 +0100 |
commit | da432cdc35ddc3e2e1374f7fc46210b4a92e6f54 (patch) | |
tree | 2aea6b55f7d66bc517fbe4464de0b88b793fc521 /include | |
parent | 7d0fe2ae6f9892faac0fc4374573869e6edf325e (diff) |
libosmocore libusb integration
Osmocom applications typically use libosmocore select.[ch] event loop
code as their main event dispatch mechanism. When they want to deal
with libusb in a non-blocking/asynchronous way, they need to integrate
libusb into that select().
The new libosmousb is doing exactly that: Providing a shared utility
library for Osmocom programs that wish to use libusb. This is useful
for example in simtrace2 host utilitie as well as osmo-e1d.
Change-Id: I656a1a38cbb5b1f3a9145d2869d3b4d0adefcae3
Closes: OS#4299
Diffstat (limited to 'include')
-rw-r--r-- | include/Makefile.am | 5 | ||||
-rw-r--r-- | include/osmocom/usb/libusb.h | 6 |
2 files changed, 11 insertions, 0 deletions
diff --git a/include/Makefile.am b/include/Makefile.am index d76addd0..dc6eaa7f 100644 --- a/include/Makefile.am +++ b/include/Makefile.am @@ -164,6 +164,11 @@ nobase_include_HEADERS += \ osmocom/ctrl/control_vty.h endif +if ENABLE_LIBUSB +nobase_include_HEADERS += \ + osmocom/usb/libusb.h +endif + noinst_HEADERS = \ osmocom/gsm/kasumi.h \ osmocom/gsm/gea.h \ diff --git a/include/osmocom/usb/libusb.h b/include/osmocom/usb/libusb.h new file mode 100644 index 00000000..7f10f74c --- /dev/null +++ b/include/osmocom/usb/libusb.h @@ -0,0 +1,6 @@ +#pragma once + +#include <libusb.h> + +int osmo_libusb_init(libusb_context **luctx); +void osmo_libusb_exit(libusb_context *luctx); |