summaryrefslogtreecommitdiff
path: root/modules/debug_cmd
Commit message (Collapse)AuthorAge
* debug_cmd: print openssl versionAlfred E. Heggestad2017-02-25
|
* debug_cmd: update doxygen commentAlfred E. Heggestad2016-12-12
|
* cmd: check for duplicated entriesAlfred E. Heggestad2016-11-27
| | | | | | | | | | | - registering duplicate short commands is no longer possible - disable a couple of short commands, use long command instead (short commands should only be used for very frequently used things) - menu: properly register/unregister digit handlers for active calls thanks to Juha Heinanen for reporting an issue with the 'a' key
* play: make it re-entrant, add struct playerAlfred E. Heggestad2016-09-04
|
* cmd: make it fully re-entrantAlfred E. Heggestad2016-08-07
|
* cmd: add support for long commandsAlfred E. Heggestad2016-08-07
| | | | | | | | | | | | | | | | | | - Long commands are commands that is 2 or more characters, and MUST be completed by pressing enter. - A given command can have a long-command, a short-command or both. - All long commands are using '/' (slash) prefix - a simple TAB-completion is supported, while punching in your long command you can press TAB to see a list of commands that matches the input string. Feedback is welcome, specially on the long-command strings itself. If you want to suggest changes, please make a small and non-intrusive patch and send it as a Pull Request (PR).
* move some debug commands from menu to debug_cmdAlfred E. Heggestad2016-08-01
| | | | | | | | | - Move commands 'g' 'u' and 'i' from menu.so module to debug.cmd.so module - This can be useful for example if baresip is loaded with a server-type module_app (e.g. echo.so and b2bua.so) instead of a client-type module app (menu.so)
* debug_cmd.so: new module for Debug CommandsAlfred E. Heggestad2016-07-30
move some debug commands from menu.so to debug_cmd.so