aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/include/openbsc/vty.h
AgeCommit message (Collapse)AuthorFilesLines
2011-02-28mgcp: Introduce a trunk config for multiple trunks.Holger Hans Peter Freyther1-0/+1
A trunk will always have 32 endpoints to be used and we allow a sparse allocation of endpoints.
2011-02-19Fix various compiler warnings all over the codeHarald Welte1-0/+3
2011-02-13OM2000: Introduce VTY commands to initiate OM2000 proceduresHarald Welte1-0/+1
2011-02-05[E1 INPUT] explicitly configure the E1 input driver for each lineHarald Welte1-0/+1
This introduces a new 'e1_input' config node with a command to be used like: e1_line 0 driver misdn This allows us to have different input drivers in the future
2010-10-12misc: Replace the idiom for replacing a string with a function callHolger Hans Peter Freyther1-0/+1
Remove a lot of code in favor of a new function that is freeing the old string and copying the new one. I should have gotten the context and the strings right.
2010-09-15bsc: Register a new MSC group with data for the MSC connectionHolger Hans Peter Freyther1-0/+1
This group contains everything that is related to the MSC connections.
2010-08-26vty: Provide a is_config_node for the VTY and use it for the bscHolger Hans Peter Freyther1-0/+2
Right now only bsc_hack and osmo_bsc need to have a custom config handling as they use the subscr/oml nodes.
2010-08-04vty: Remove the logging command that is in libosmocoreHolger Hans Peter Freyther1-1/+0
2010-06-17nat: Rename BSC_NODE to NAT_BSC_NODE to avoid future issues.Holger Hans Peter Freyther1-1/+1
2010-06-15nat: Add NAT_NODE and BSC_NODE for the natHolger Hans Peter Freyther1-0/+2
Implement the go to parent and exit functions for the nat.
2010-05-31VTY: libosmocore >= 0.1.9 doesn't define BSC specific VTY nodes anymoreHarald Welte1-0/+15
2010-05-25Migrate VTY code to libosmovtyHarald Welte1-2/+2
2010-05-23vty: The method got renamed, fix various compiler warnings.Holger Hans Peter Freyther1-1/+1
2010-05-14[VTY] Introduce "end" command that works from any level in configHarald Welte1-0/+1
Using "end" you can always return to the "enable" level, and from there the "show" commands are available. So no more need for exit/exit/exit/exit/disable.
2010-05-14[VTY] Remove OpenBSC specific node-exit handling from src/vtyHarald Welte1-0/+1
The idea is to move the VTY code into libosmocore at some point, and for that we need to eliminate OpenBSC specifics from it
2010-05-14VTY: Introduce common code to add 'description' to objects like BTSHarald Welte1-0/+8
There is now an option to add a human-readable description to objects that are configured in the VTY.
2010-04-15[vty] Separate BSC and MSC statistics. Make it easy to print them.Holger Hans Peter Freyther1-0/+4
Move the statistics command into the MSC part and move the BSC statistics printing into a subroutine.
2010-04-06[vty] Move the VTY logging commands to a new fileHolger Hans Peter Freyther1-0/+6
Currently vty_interface.c is used for the BSC config, in case of the MGCP Gateway or the BSC Nat process these logging commands are not available. Move the commands to a new vty_interface_cmds.c file to allow to share basic commands across different programs.