aboutsummaryrefslogtreecommitdiffstats
path: root/src/diag_log_umts.c
AgeCommit message (Collapse)AuthorFilesLines
2017-01-08separate diag_log_umts to diag_log_wcdmaHarald Welte1-13/+6
Qualcomm differentiates between WCDMA (the access stratum) and UMTS (the non access stratum). Let's reflect that here. As an added bonus, we get working NAS protocol traces.
2017-01-01WIP: gsmtapHarald Welte1-0/+7
2016-12-24header file restructuringHarald Welte1-5/+1
Move all protocol definitions to protocol/*.h and keep only definitions related to our implementation as *.h in the top directory. Also, remove some header files to reduce header file proliferation.
2016-12-24re-structure the LOG dispatcherHarald Welte1-0/+25
we now have a nice structure for dispatching log messages to various handlers, each self-contained. As an added benefit, we remove the need to manually enable all the various log codes, as we simply auto-generate the default config from all the message types we support. Furthermore, we reduce computational complexity by avoiding linear iteration over the array of registered log handlers.