summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/vnet/bier/bier.api15
1 files changed, 5 insertions, 10 deletions
diff --git a/src/vnet/bier/bier.api b/src/vnet/bier/bier.api
index e4edfa1768a..f7a13e4705b 100644
--- a/src/vnet/bier/bier.api
+++ b/src/vnet/bier/bier.api
@@ -21,9 +21,9 @@
vl_api_version 1.0.0
/** \brief BIER Table Indentifier
- @param bt_set
- @param bt_sub_domain
- @param bt_bit_header_length
+ @param bt_set - The BIER set
+ @param bt_sub_domain - the sud-domain
+ @param bt_bit_header_length - the number of bits in the header length
*/
typeonly define bier_table_id
{
@@ -139,9 +139,8 @@ define bier_route_details
@param context - sender context, to match reply w/ request
@param bi_tbl_id - The BIER table-id used to forward post encap
@param bi_src - The source Bit-position in the encap.
- @param bi_is_add - Is this a route add or delete
@param bi_n_bytes - The number of bytes in the following bit-string
- @param bi_bytes - The bit-string represented as a byte array
+ @param bi_bytes - The bit-string represented as a byte array (MSB first)
*/
define bier_imp_add
{
@@ -149,7 +148,6 @@ define bier_imp_add
u32 context;
vl_api_bier_table_id_t bi_tbl_id;
u16 bi_src;
- u8 bi_is_add;
u8 bi_n_bytes;
u8 bi_bytes[bi_n_bytes];
};
@@ -229,10 +227,7 @@ define bier_disp_table_details
@param bde_is_add - Is this a route add or delete
@param bde_payload_proto - The payload protocol for which the next-hop
is added
- @param bde_next_hop_table_id - The table ID for the next-hop
- @param bde_next_hop_proto_is_ip4 - The next-hop is IPV4
- @param bde_next_hop[16] - the nextop address.
- Set this to all 0s for dispostion.
+ @param bde_paths - The outgoing paths for the entry
*/
autoreply define bier_disp_entry_add_del
{
4 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250