aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2018-01-24 14:35:36 +0100
committerHarald Welte <laforge@gnumonks.org>2018-01-24 14:04:46 +0000
commita1c5de45c101f9d5995e71a0a767afb405fea55b (patch)
treed10ccc75fd3fe467cfe102a857c324d3ecc2de05 /include
parent37382ec2cf26ebcd70918457cb4d2b7285c52e0d (diff)
Remove traces of meas_feed
Measurement reporting (and the relate feed) are functions of the BSC, not the MSC. This code should never have been inherited from OsmoNITB to OsmoMSC in the first place, let's remove it. Change-Id: I0d57ac214e574e267fa9752daf76566197b9aa64
Diffstat (limited to 'include')
-rw-r--r--include/osmocom/msc/Makefile.am1
-rw-r--r--include/osmocom/msc/meas_feed.h41
2 files changed, 0 insertions, 42 deletions
diff --git a/include/osmocom/msc/Makefile.am b/include/osmocom/msc/Makefile.am
index 1419e8ef9..61c915a97 100644
--- a/include/osmocom/msc/Makefile.am
+++ b/include/osmocom/msc/Makefile.am
@@ -33,7 +33,6 @@ noinst_HEADERS = \
iucs.h \
iucs_ranap.h \
iu_dummy.h \
- meas_feed.h \
meas_rep.h \
misdn.h \
mncc.h \
diff --git a/include/osmocom/msc/meas_feed.h b/include/osmocom/msc/meas_feed.h
deleted file mode 100644
index 02b7d95b4..000000000
--- a/include/osmocom/msc/meas_feed.h
+++ /dev/null
@@ -1,41 +0,0 @@
-#ifndef _OPENBSC_MEAS_FEED_H
-#define _OPENBSC_MEAS_FEED_H
-
-#include <stdint.h>
-
-#include <osmocom/msc/meas_rep.h>
-
-struct meas_feed_hdr {
- uint8_t msg_type;
- uint8_t reserved;
- uint16_t version;
-};
-
-struct meas_feed_meas {
- struct meas_feed_hdr hdr;
- char imsi[15+1];
- char name[31+1];
- char scenario[31+1];
- struct gsm_meas_rep mr;
- /* The logical channel type, enum gsm_chan_t */
- uint8_t lchan_type;
- /* The physical channel type, enum gsm_phys_chan_config */
- uint8_t pchan_type;
- /* number of ths BTS in network */
- uint8_t bts_nr;
- /* number of this TRX in the BTS */
- uint8_t trx_nr;
- /* number of this timeslot at the TRX */
- uint8_t ts_nr;
- /* The logical subslot number in the TS */
- uint8_t ss_nr;
-};
-
-enum meas_feed_msgtype {
- MEAS_FEED_MEAS = 0,
-};
-
-#define MEAS_FEED_VERSION 1
-
-
-#endif