aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmocore/gsm0480.h
AgeCommit message (Collapse)AuthorFilesLines
2011-03-23include: reorganize headers file to include/osmocom/[gsm|core]0.2.0Pablo Neira Ayuso1-26/+0
This patch moves all GSM-specific definitions to include/osmocom/gsm. Moreover, the headers in include/osmocore/ have been moved to include/osmocom/core. This has been proposed by Harald Welte and Sylvain Munaunt. Tested with `make distcheck'. Signed-off-by: Pablo Neira Ayuso <pablo@gnumonks.org>
2010-10-18gsm0480: Add method create own number responseHolger Hans Peter Freyther1-0/+1
2010-10-11ussd: Add a test case, switch parsing to use a gsm48_hdr and lenHolger Hans Peter Freyther1-1/+3
The current USSD code is not doing any size checks, add a test case to find out how easily we access the data out of bounds. Begin to use the length in some places.
2010-10-09gsm0480: Move the USSD parsing code to libosmocore0.1.23Holger Hans Peter Freyther1-0/+11
- Change u_int8 to uint8 - Change DEBUGP to LOGP - Change fprintf(stderr, to LOGP(0, LOGL_DEBUG - We should define log areas used inside libosmocore
2010-09-30gsm0480: Add USSD format functions to libosmocore0.1.22Holger Hans Peter Freyther1-0/+12
These routines come from OpenBSC, the msgb_wrap_* functions belong to Mike Haben, the rest is mine. The msgb allocation is compatible to the GSM48 allocation in OpenBSC.