aboutsummaryrefslogtreecommitdiffstats
path: root/src/gsm_04_11.c
AgeCommit message (Collapse)AuthorFilesLines
2009-03-30Store incoming SMS into SQL databaseHarald Welte1-28/+246
* gsm_util now uses caller-allocated data (rather than callee-allocated) * correctly parse destination address * parse (but not transcode) non-default encodings of SMS * reject SMS to unknown destination number * resolve target subscriber id and store incoming SMS (without header) in 'sms' table What we're now missing is the sending part, i.e. a regular task iterating over all pending SMS and trying to deliver them. Also, check for pending SMS once we get a LOCATION UPDATE.
2009-02-23[sms] Fix memory leakHolger Freyther1-0/+1
2009-02-17[utils] Create gsm_utils for 7bit encoding and decoding...Holger Freyther1-18/+2
2009-02-16modify the signal handler/dispatch code (sorry zecke, no offense, I just had ↵Harald Welte1-8/+1
some different ideas) * introduce new notion of subsystem in addition to signal number * no need for bitmasks of 'areas' (aka subsystems) * pass subsystem/signal_nr/... per argument rather than by data structure
2009-02-16[sms] Send a notification on incoming SMSHolger Freyther1-0/+10
Further tests of the signal class. Send a notification on incoming SMS.
2009-01-04Make gcc happy and remove a couple of warningsHolger Freyther1-4/+6
Remove the callbacks from gsm_network for now. A set of different callbacks will be back. E.g. when the paging is completed, when the Q.931 like call handling is there... Remove var's or move them into #if 0, remove unused stuff that looks like we do not need it anytime soon or #if 0 them, move stuff around.
2009-01-04Export the gsm0411 alloc and send functionHolger Freyther1-2/+2
2008-12-30use 'ALL YOUR PHONE ARE BELONG TO US' as SMSHarald Welte1-3/+3
2008-12-30Nothing to see here, move along;Daniel Willmann1-1/+1
2008-12-30Change TPDU of welcome messageDaniel Willmann1-2/+18
2008-12-29Regenerate a valid TPDU and send it at first registrationDaniel Willmann1-5/+2
2008-12-29Send real SMSC noDaniel Willmann1-2/+11
2008-12-29Add RPDU lengthDaniel Willmann1-1/+5
2008-12-29Implement sending SMS and send one on network registrationDaniel Willmann1-0/+48
2008-12-29Print out info about CP-ERRORDaniel Willmann1-0/+4
2008-12-29RP-ACK needs to be sent in a CP-DATADaniel Willmann1-4/+7
2008-12-29Send transaction index when sending an CP-ACKDaniel Willmann1-5/+7
2008-12-29ACK sms-submitDaniel Willmann1-1/+64
2008-12-29Parse sms-submit messagesDaniel Willmann1-2/+66
2008-12-28Add SMS (GSM 04.11) testing programDaniel Willmann1-1/+2
2008-12-28Start implementing GSM 04.11 (short message service)Daniel Willmann1-0/+81