X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fplugins%2Flb%2Flb.api;h=d36f857f5de5155ea84e16fc05c2258f5b76c6cb;hb=ffba3c3;hp=545d6b18c3e20adb3d51fe32155e06bdc1618eb6;hpb=49ca2601114a8a29520cba5f0ab3ea1dc1968f7f;p=vpp.git diff --git a/src/plugins/lb/lb.api b/src/plugins/lb/lb.api index 545d6b18c3e..d36f857f5de 100644 --- a/src/plugins/lb/lb.api +++ b/src/plugins/lb/lb.api @@ -75,3 +75,19 @@ autoreply define lb_add_del_as { u8 is_flush; }; +/** \brief Flush a given vip + @param client_index - opaque cookie to identify the sender + @param context - sender context, to match reply w/ request + @param ip_prefix - IP address (IPv4 in lower order 32 bits). + @param prefix_length - IP prefix length (96 + 'IPv4 prefix length' for IPv4). + @param protocol - tcp or udp. + @param port - destination port. +*/ +autoreply define lb_flush_vip { + u32 client_index; + u32 context; + u8 ip_prefix[16]; + u8 prefix_length; + u8 protocol; + u16 port; +};