summaryrefslogtreecommitdiffstats
path: root/src/host/layer23/include
diff options
context:
space:
mode:
authorSylvain Munaut <tnt@246tNt.com>2010-07-24 21:25:38 +0200
committerSylvain Munaut <tnt@246tNt.com>2010-07-25 10:19:34 +0200
commit66c3ca052741b060e07683c6661fdc25de34cd43 (patch)
treeb4563b9202a1002417ff282b0fa3230d0ae1fd68 /src/host/layer23/include
parentda6bc3b5773d8421e9528dd8a2ac2dc0638f9c07 (diff)
layer23: Switch to using gsmtap_util from libosmocom
Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
Diffstat (limited to 'src/host/layer23/include')
-rw-r--r--src/host/layer23/include/osmocom/Makefile.am2
-rw-r--r--src/host/layer23/include/osmocom/gsmtap_util.h16
2 files changed, 1 insertions, 17 deletions
diff --git a/src/host/layer23/include/osmocom/Makefile.am b/src/host/layer23/include/osmocom/Makefile.am
index 86537aa5..f4002f54 100644
--- a/src/host/layer23/include/osmocom/Makefile.am
+++ b/src/host/layer23/include/osmocom/Makefile.am
@@ -1,2 +1,2 @@
noinst_HEADERS = l1ctl.h osmocom_data.h lapdm.h rslms.h layer3.h \
- gsmtap_util.h logging.h
+ logging.h
diff --git a/src/host/layer23/include/osmocom/gsmtap_util.h b/src/host/layer23/include/osmocom/gsmtap_util.h
deleted file mode 100644
index 30fc1267..00000000
--- a/src/host/layer23/include/osmocom/gsmtap_util.h
+++ /dev/null
@@ -1,16 +0,0 @@
-#ifndef _GSMTAP_UTIL_H
-#define _GSMTAP_UTIL_H
-
-#include <stdint.h>
-
-/* convert RSL channel number to GSMTAP channel type */
-uint8_t chantype_rsl2gsmtap(uint8_t rsl_chantype, uint8_t rsl_link_id);
-
-/* receive a message from L1/L2 and put it in GSMTAP */
-int gsmtap_sendmsg(uint16_t arfcn, uint8_t ts, uint8_t chan_type, uint8_t ss,
- uint32_t fn, int8_t signal_dbm, uint8_t snr,
- const uint8_t *data, unsigned int len);
-
-int gsmtap_init(uint32_t dst_ip);
-
-#endif /* _GSMTAP_UTIL_H */