add functions to register/unregister multiple CLI commands in a single operation (bug #4255, with minor mods)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5662 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Kevin P. Fleming
2005-05-15 03:03:48 +00:00
parent b5272684ee
commit 0356b70224
4 changed files with 81 additions and 120 deletions

View File

@@ -57,23 +57,36 @@ struct ast_cli_entry {
*/
extern int ast_cli_command(int fd, char *s);
/*! Registers a command */
/*! Registers a command or an array of commands */
/*!
* \param fd File descriptor that I/O is done to
* \param s string given at prompt
* \param e which cli entry to register
* Register your own command
* Returns 0 on success, -1 on failure
*/
extern int ast_cli_register(struct ast_cli_entry *e);
/*! Unregisters a command */
/*!
* \param e pointer to first cli entry to register
* \param len number of entries to register
* Register multiple commands
*/
extern void ast_cli_register_multiple(struct ast_cli_entry *e, int len);
/*! Unregisters a command or an array of commands */
/*!
* \param e which cli entry to unregister
* Unregister your own command. You must pass a completed ast_cli_entry structur
* Returns 0 on success, -1 on failure
* Unregister your own command. You must pass a completed ast_cli_entry structure
* Returns 0.
*/
extern int ast_cli_unregister(struct ast_cli_entry *e);
/*!
* \param e pointer to first cli entry to unregister
* \param len number of entries to unregister
* Unregister multiple commands
*/
extern void ast_cli_unregister_multiple(struct ast_cli_entry *e, int len);
/*! Readline madness */
/* Useful for readline, that's about it
* Returns 0 on success, -1 on failure