tcp session: next node config on connects
[vpp.git] / src / vnet / mfib / mfib_types.api
index b2ba432..de723b6 100644 (file)
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+ option version = "1.0.0";
+
 import "vnet/fib/fib_types.api";
 import "vnet/ip/ip_types.api";
 
+enum mfib_entry_flags
+{
+    MFIB_API_ENTRY_FLAG_NONE = 0,
+    MFIB_API_ENTRY_FLAG_SIGNAL = 0x1,
+    MFIB_API_ENTRY_FLAG_DROP = 0x2,
+    MFIB_API_ENTRY_FLAG_CONNECTED = 0x4,
+    MFIB_API_ENTRY_FLAG_ACCEPT_ALL_ITF = 0x8,
+};
+
 enum mfib_itf_flags
 {
     MFIB_API_ITF_FLAG_NONE = 0,
@@ -28,7 +38,7 @@ enum mfib_itf_flags
 
 /** \brief mFIB path
 */
-typeonly define mfib_path
+typedef mfib_path
 {
   vl_api_mfib_itf_flags_t itf_flags;
   vl_api_fib_path_t path;