|
version 1.6.2.1, 2013/08/12 09:12:04
|
version 1.8, 2013/10/08 12:04:42
|
|
Line 195 typedef TAILQ_HEAD(tqHistoryHead, tagHistory) history_
|
Line 195 typedef TAILQ_HEAD(tqHistoryHead, tagHistory) history_
|
| |
|
| /* Bind keys structure types */ |
/* Bind keys structure types */ |
| |
|
| typedef int (*bindkey_func_t)(int idx, /*linebuffer_t **/ void * __restrict cli_buffer); | typedef int (*bindkey_func_t)(int idx, /* linebuffer_t * */ void * __restrict cli_buffer); |
| typedef struct { |
typedef struct { |
| int key_len; |
int key_len; |
| unsigned char key_ch[8]; |
unsigned char key_ch[8]; |
|
Line 379 int cli_telnet_Answer(unsigned char *caps, int nCaps,
|
Line 379 int cli_telnet_Answer(unsigned char *caps, int nCaps,
|
| * cli_Cmd_Unsupported() - Builtin helper function for unsupported commands |
* cli_Cmd_Unsupported() - Builtin helper function for unsupported commands |
| * |
* |
| * @cli_buffer = CLI buffer |
* @cli_buffer = CLI buffer |
| * @idx = Selected command ID | * @idx = Config level |
| * @args = Parsed arguments array |
* @args = Parsed arguments array |
| * return: RETCODE_OK ok |
* return: RETCODE_OK ok |
| */ |
*/ |
|
Line 403 int cli_BindKey(bindkey_t * __restrict key, linebuffer
|
Line 403 int cli_BindKey(bindkey_t * __restrict key, linebuffer
|
| * |
* |
| * @cli_buffer = CLI buffer |
* @cli_buffer = CLI buffer |
| * @csCmd = Command name |
* @csCmd = Command name |
| * @cliLevel = Level in CLI, -1 unprivi(view from all), 0 main config, 1 sub config ... | * @cliLevel = Level in CLI, -1 view from all levels, 0 hidden, >0 mask levels |
| * @funcCmd = Callback function when user call command |
* @funcCmd = Callback function when user call command |
| * @csInfo = Inline information for command |
* @csInfo = Inline information for command |
| * @csHelp = Help line when call help |
* @csHelp = Help line when call help |
|
Line 418 cli_addCommand(linebuffer_t * __restrict cli_buffer, c
|
Line 418 cli_addCommand(linebuffer_t * __restrict cli_buffer, c
|
| * |
* |
| * @cli_buffer = CLI buffer |
* @cli_buffer = CLI buffer |
| * @csCmd = Command name |
* @csCmd = Command name |
| * @cliLevel = Level in CLI, -1 unprivi(view from all), 0 main config, 1 sub config ... | * @cliLevel = Level in CLI, -1 view from all levels, 0 hidden, >0 mask levels |
| * return: RETCODE_ERR error, RETCODE_OK ok |
* return: RETCODE_ERR error, RETCODE_OK ok |
| */ |
*/ |
| int |
int |
|
Line 428 cli_delCommand(linebuffer_t * __restrict cli_buffer, c
|
Line 428 cli_delCommand(linebuffer_t * __restrict cli_buffer, c
|
| * |
* |
| * @cli_buffer = CLI buffer |
* @cli_buffer = CLI buffer |
| * @csCmd = Command name |
* @csCmd = Command name |
| * @cliLevel = Level in CLI, -1 unprivi(view from all), 0 main config, 1 sub config ... | * @cliLevel = Level in CLI, -1 view from all levels, 0 hidden, >0 mask levels |
| * @funcCmd = Callback function when user call command |
* @funcCmd = Callback function when user call command |
| * @csInfo = Inline information for command |
* @csInfo = Inline information for command |
| * @csHelp = Help line when call help |
* @csHelp = Help line when call help |