aboutsummaryrefslogtreecommitdiffstats
path: root/src/e1_input.c
diff options
context:
space:
mode:
authorSylvain Munaut <tnt@246tNt.com>2019-05-09 11:14:26 +0200
committerHarald Welte <laforge@osmocom.org>2020-01-12 14:22:18 +0100
commitb559a5326371fa88dafd82d9fa6f9117442a6f70 (patch)
treefc2bc894225a3a4514af31e790eb3917e0567faf /src/e1_input.c
parentb5af0991b39f5dc5e90cd5e36379631d389816be (diff)
e1d: Initial osmo-e1d support
osmo-e1d is part of the Osmocom 'software defined E1 interface, which consists of a USB device for the actual E1 hardware interfacing, and a daemon (osmo-e1d) implementing a libusb-based driver. This commit adds initial support for talking to osmo-e1d using the related libosmoe1d library. You need to use '--enable-e1d' at configure time to enable it. Change-Id: Ia0431c124e3b5b4108aee7b109d8c4bb0d8b45d4 Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
Diffstat (limited to 'src/e1_input.c')
-rw-r--r--src/e1_input.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/e1_input.c b/src/e1_input.c
index a707438..cb1612d 100644
--- a/src/e1_input.c
+++ b/src/e1_input.c
@@ -890,6 +890,9 @@ void e1inp_init(void)
#ifdef HAVE_DAHDI_USER_H
e1inp_dahdi_init();
#endif
+#ifdef ENABLE_E1D
+ e1inp_e1d_init();
+#endif
e1inp_ipaccess_init();
e1inp_rs232_init();
e1inp_unixsocket_init();