aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/tests/smpp
AgeCommit message (Collapse)AuthorFilesLines
2016-09-15Consistenly format variables in */Makefile.am filesAlexander Huemer1-8/+35
Change-Id: Ifa21513c007072314097b7bec188579972dc1694
2016-06-18rm dup: use channel type names from libosmocoreNeels Hofmeyr1-1/+1
In gsm_lchant_name(enum gsm_chan_t), use the gsm_chan_t_names value strings from libosmocore instead of redefining the same strings. The list from libosmocore is also more complete, including CCCH and PDTCH. Add a todo comment to move to libosmocore. In consequence, libosmogsm linkage needs to be added to osmo-bsc_mgcp, mgcp_test, mgcp_transcoding_test and smpp_mirror, smpp_test. Change-Id: If65ee7c0619cbc0acb0a15045bd5a969442c93cc
2016-02-18Patch to make openbsc find libsmpp34Ruben Undheim1-1/+1
This patch lets the build script for openbsc find the libsmpp34 installation with the help of pkg-config instead of assuming the header files are in /usr/include.
2015-11-21tests/smpp: Fix linking orderHarald Welte1-2/+3
At least when using system-wide libtalloc, the LIBOSMOCORE_LIBS must come last, after the static libraries under libcommon.
2013-09-19smpp: Fix the make distcheck for smppHolger Hans Peter Freyther1-2/+2
DISTCHECK_CONFIGURE_FLAGS="--enable-smpp" make distcheck
2013-07-27smpp: Move the coding/mode detection into a utils fileHolger Hans Peter Freyther4-0/+88
Make sure to not ever have issues with this code again, move the utility code to a new file and create a basic testcase. The method currently has 100% line and branch coverage. My initial patched missed the smpp_utils.c file and I re-did the copying (and verifying the branch coverage)