1
0
mirror of https://gitlab.labs.nic.cz/labs/bird.git synced 2024-05-11 16:54:54 +00:00

Nest: split route show into separate file

This commit is contained in:
Jan Moskyto Matejka
2017-05-15 12:10:51 +02:00
parent 95639d9577
commit f8d44b01df
6 changed files with 429 additions and 416 deletions

View File

@@ -313,7 +313,8 @@ cli_new(void *priv)
c->event->hook = cli_event;
c->event->data = c;
c->cont = cli_hello;
c->parser_pool = lp_new(c->pool, 4096);
c->parser_pool = lp_new(c->pool, 4080);
c->show_pool = lp_new(c->pool, 4080);
c->rx_buf = mb_alloc(c->pool, CLI_RX_BUF_SIZE);
ev_schedule(c->event);
return c;