aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/tests/sccp
AgeCommit message (Collapse)AuthorFilesLines
2010-04-21[sccp] Parse the error message and add a unit test for it.Holger Hans Peter Freyther1-1/+20
2010-03-26sccp: Change the ownership of the msgb passed to the callbackHolger Hans Peter Freyther1-10/+14
Instead of deleting the msgb within the SCCP library the implementor of the write callback needs to free it. This is required for non blocking io with the server.
2010-02-26Merge remote branch 'origin/master' into on-waves/sccpHolger Hans Peter Freyther2-3/+5
2010-02-26[misc] Add LIBOSMOCORE_CFLAGS to the includesHolger Hans Peter Freyther1-1/+1
2010-02-26[sccp] Implement parsing the rather easy IT messages.Holger Hans Peter Freyther1-0/+100
2010-02-20finish openbsc / libosmocore separationHarald Welte2-2/+2
* use pkg-config from openbsc to find header and library * move sms and timer tests to libosmocore itself * ensure "make distcheck" works on both packages
2010-02-12Merge branch 'on-waves/sccp'Holger Hans Peter Freyther1-1/+1
2010-02-12[sccp] Make the file includable outside of OpenBSCHolger Hans Peter Freyther1-1/+3
2010-02-09liblaf0rge: Make the other targets depend on the liblaforge...Holger Hans Peter Freyther1-1/+1
Everything is linking fine here.
2010-02-03[sccp] Refer to the right Company in the Copyright/Copyleft lineHolger Hans Peter Freyther1-1/+1
Use On-Waves instead of the name I made up from the domain name.
2009-12-23[sccp] Provide dummy db_store_counter...Holger Hans Peter Freyther1-0/+2
2009-11-20[sccp] Implement sending the Inactivity Test on a connection..Holger Hans Peter Freyther1-0/+1
Currently this will send a dummy inactivity test message, there is currently no parsing or API to receive the messages. The sequencing and credit entries are empty as sequencing is currently not used at all. The test is currently limited to send the message and see if the application is crashing or not.
2009-11-20[sccp] Implement parts of ITU SCCP for use in the A-InterfaceHolger Hans Peter Freyther2-0/+731
include/sccp/sccp_types.h contain Q.713 and GSM definitions include/sccp/sccp.h is the application interface resembling the esentials of the UNIX socket interface. src/sccp.c is the actual implementation of SCCP featuring connection and UDT1 support. tests/sccp/sccp.c is testing connection creation and formating of the SCCP messages used by the A-interface. And it contains a simple fuzzing test to test the robustnes of the implementation.