aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xcontrib/jenkins.sh4
-rw-r--r--include/osmocom/sgsn/debug.h1
-rw-r--r--src/libcommon/common_vty.c5
-rw-r--r--src/libcommon/debug.c5
4 files changed, 2 insertions, 13 deletions
diff --git a/contrib/jenkins.sh b/contrib/jenkins.sh
index e60e8a58d..931d14c89 100755
--- a/contrib/jenkins.sh
+++ b/contrib/jenkins.sh
@@ -49,12 +49,12 @@ set -x
cd "$base"
autoreconf --install --force
-./configure --enable-sanitize $enable_werror $SMPP $MGCP $IU --enable-external-tests
+./configure --enable-sanitize $enable_werror $MGCP $IU --enable-external-tests
$MAKE $PARALLEL_MAKE
LD_LIBRARY_PATH="$inst/lib" $MAKE check \
|| cat-testlogs.sh
LD_LIBRARY_PATH="$inst/lib" \
- DISTCHECK_CONFIGURE_FLAGS="$enable_werror $SMPP $MGCP $IU --enable-external-tests" \
+ DISTCHECK_CONFIGURE_FLAGS="$enable_werror $MGCP $IU --enable-external-tests" \
$MAKE distcheck \
|| cat-testlogs.sh
diff --git a/include/osmocom/sgsn/debug.h b/include/osmocom/sgsn/debug.h
index 65e197d52..eed29213e 100644
--- a/include/osmocom/sgsn/debug.h
+++ b/include/osmocom/sgsn/debug.h
@@ -31,7 +31,6 @@ enum {
DSLHC,
DNAT,
DCTRL,
- DSMPP,
DFILTER,
DGTPHUB,
DRANAP,
diff --git a/src/libcommon/common_vty.c b/src/libcommon/common_vty.c
index e9605506a..7b80bcb42 100644
--- a/src/libcommon/common_vty.c
+++ b/src/libcommon/common_vty.c
@@ -103,11 +103,6 @@ int bsc_vty_go_parent(struct vty *vty)
vty->node = MGCP_NODE;
vty->index = NULL;
break;
- case SMPP_ESME_NODE:
- vty->node = SMPP_NODE;
- vty->index = NULL;
- break;
- case SMPP_NODE:
case MGCP_NODE:
case GBPROXY_NODE:
case SGSN_NODE:
diff --git a/src/libcommon/debug.c b/src/libcommon/debug.c
index 607640998..06653a977 100644
--- a/src/libcommon/debug.c
+++ b/src/libcommon/debug.c
@@ -154,11 +154,6 @@ static const struct log_info_cat default_categories[] = {
.description = "Control interface",
.enabled = 1, .loglevel = LOGL_NOTICE,
},
- [DSMPP] = {
- .name = "DSMPP",
- .description = "SMPP interface for external SMS apps",
- .enabled = 1, .loglevel = LOGL_DEBUG,
- },
[DFILTER] = {
.name = "DFILTER",
.description = "BSC/NAT IMSI based filtering",