aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/vty_interface_layer3.c
AgeCommit message (Collapse)AuthorFilesLines
2010-04-30[vty] Allow to create a buffer in a given context.Holger Hans Peter Freyther1-1/+1
Stop using the global vty context for all allocations and allow to embed the buffer into a given context, and allocate sub buffers with the context of its parent.
2010-04-13[vty] Separate BSC and MSC statistics. Make it easy to print them.Holger Hans Peter Freyther1-0/+37
Move the statistics command into the MSC part and move the BSC statistics printing into a subroutine.
2010-02-20split 'libosmocore' from openbsc codebaseHarald Welte1-3/+3
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
2010-01-06[vty] Move db usage out of the libbsc (fork dumping of subscr)Holger Hans Peter Freyther1-5/+52
vty_interface.c is part of libbsc.a but it started to use code which is found in db.c recently. Fork the subscriber dumping and provide more information on the layer3+ (MSC) commands. This is restoring the separation again.
2010-01-03vty: Add command to set auth algo & Ki for a subscriberSylvain Munaut1-0/+62
Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
2010-01-03silent_call: Add option to choose channel typeSylvain Munaut1-16/+46
Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
2009-12-22Implement a better sending of pending SMSSylvain Munaut1-10/+7
The previous implementation had some shortcomings: - If the MIN ID given was not the exact id of the first unsent SMS, it would try to submit the same sms several time until id++ finally made id go to the next one. - If a subscriber had several SMS pending it would try to submit them individually (only to get rejected because a paging for that subscriber was already in progress) Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
2009-11-17silent call: add header file for function prototypesHarald Welte1-0/+1
2009-11-14VTY (silent sms / sms): better error reportingHarald Welte1-4/+9
2009-11-14silent sms: make it silent again (type 64), fix subscriber refcount leakHarald Welte1-1/+5
2009-11-14Add "silent call" feature to OpenBSCHarald Welte1-1/+55
This allows the administrator to use the vty interface to issue a silent call to a given subscriber by using "subscriber extension XXXX silent call start" and stopping that silent call with "subscriber extension XXXX silent call stop"
2009-11-14[VTY] restructure sms and silent sms commandsHarald Welte1-63/+32
2009-11-14[VTY] Add feature to send silent SMS from consoleHarald Welte1-4/+46
"Silent SMS" is a SMS that is delivered (and confirmed) but not shown on the display of the phone. You can now send such SMS by using sms send silent extension 12345 text or sms send silent imsi 123451234512345 text
2009-11-06vty: Do not leak the gsm_subscriberHolger Hans Peter Freyther1-0/+5
2009-08-17[vty] Move layer3+ functionality to vty_interface_layer3.cHolger Hans Peter Freyther1-0/+315
Move everything that is policy, requires access to a DB or is generally in the domain of the MSC to vty_interface_layer3.c.