aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/subchan_demux.c
AgeCommit message (Collapse)AuthorFilesLines
2011-03-03re-structure the OpenBSC directory layoutHarald Welte1-321/+0
The new structure divides the code into a number of libraries for the BSC core functionality, MSC core functionality, Abis transport, TRAU and other bits. This doesn't introduce any functional code change but simply moves around files and alters Makefile.am accordingly. Next step would be to disentangle a lot of the inter-library dependencies and make the individual bits of code more independent.
2011-01-01License change: We are now AGPLv3+ instead of GPLv2+Harald Welte1-6/+5
The reason for this is quite simple: We want to make sure anyone running a customized version of OpenBSC to operate a network will have to release all custom modifiations to the source code.
2010-02-20split 'libosmocore' from openbsc codebaseHarald Welte1-1/+1
This library is intended to collect all generic/common funcitionality of all Osmocom.org projects, including OpenBSC but also OsmocomBB The library currently includes the following modules: bitvec, comp128, gsm_utils, msgb, select, signal, statistics, talloc, timer, tlv_parse, linuxlist msgb allocation error debugging had to be temporarily disabled as it depends on 'debug.c' functionality which at the moment remains in OpenBSC
2009-08-15move talloc context creation out of on_dso / constructorsHarald Welte (local)1-7/+1
the various constructors get called in a non-obvious, linker determined order, which makes certain objects disappear from the talloc report. This change moves the talloc context creation into a new talloc_ctx.c file
2009-07-28move allocation of talloc contexts into link-time constructorHarald Welte1-3/+6
This is much more optimal than checking if the context exists every time we allocate the respective object.
2009-06-26use taloc_zero() rather than talloc() and explisit memset()Harald Welte1-3/+2
2009-06-20introduce talloc all over OpenBSCHarald Welte1-4/+11
2009-06-10move openbsc into its own subdirectoryHarald Welte1-0/+319