mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-15 07:15:19 +00:00
lib: initialize cmd_vector and add a root node to graph
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
This commit is contained in:
parent
bfbc035bd0
commit
76b6abb95a
@ -206,6 +206,10 @@ install_node (struct cmd_node *node,
|
|||||||
vector_set_index (cmdvec, node->node, node);
|
vector_set_index (cmdvec, node->node, node);
|
||||||
node->func = func;
|
node->func = func;
|
||||||
node->cmdgraph = graph_new ();
|
node->cmdgraph = graph_new ();
|
||||||
|
node->cmd_vector = vector_init (VECTOR_MIN_SIZE);
|
||||||
|
// add start node
|
||||||
|
struct cmd_token *token = new_cmd_token (START_TKN, NULL, NULL);
|
||||||
|
graph_new_node (node->cmdgraph, token, (void (*)(void *)) &del_cmd_token);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Breaking up string into each command piece. I assume given
|
/* Breaking up string into each command piece. I assume given
|
||||||
|
Loading…
Reference in New Issue
Block a user