X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvnet%2Fip%2Fip.api;h=e57c2fe177d9dc01c843d06097e4948780d8fbff;hb=28ab9cc13bb0b6adf68277f12cfcd33b69f40b00;hp=fa363370c56afc8d74579d97d45d9d168ff922c9;hpb=2245c0fe254f22cb64df193b90e0e6c3c6ef7847;p=vpp.git diff --git a/src/vnet/ip/ip.api b/src/vnet/ip/ip.api index fa363370c56..e57c2fe177d 100644 --- a/src/vnet/ip/ip.api +++ b/src/vnet/ip/ip.api @@ -19,6 +19,24 @@ called through a shared memory interface. */ +/** \brief Add / del table request + A table can be added multiple times, but need be deleted only once. + @param client_index - opaque cookie to identify the sender + @param context - sender context, to match reply w/ request + @param is_ipv6 - V4 or V6 table + @param table_id - table ID associated with the route + This table ID will apply to both the unicats + and mlticast FIBs +*/ +autoreply define ip_table_add_del +{ + u32 client_index; + u32 context; + u32 table_id; + u8 is_ipv6; + u8 is_add; +}; + /** \brief Dump IP fib table @param client_index - opaque cookie to identify the sender */