From 1855b8e48d95289cc9f0a6e339f2148d64ac705c Mon Sep 17 00:00:00 2001 From: Neale Ranns Date: Wed, 11 Jul 2018 10:31:26 -0700 Subject: IP directed broadcast with ip direct broadcast enable a packet to the interface's subnet broadcast address with be sent L2 broadcast on the interface. dissabled, it will be dropped. it is disabled by default, which preserves current behaviour Change-Id: If154cb92e64834e97a541b32624354348a0eafb3 Signed-off-by: Neale Ranns --- src/vnet/interface.api | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'src/vnet/interface.api') diff --git a/src/vnet/interface.api b/src/vnet/interface.api index 2cbf4f68dbc..b839e898bf2 100644 --- a/src/vnet/interface.api +++ b/src/vnet/interface.api @@ -45,6 +45,20 @@ autoreply define sw_interface_set_mtu u32 mtu[4]; /* 0 - L3, 1 - IP4, 2 - IP6, 3 - MPLS */ }; +/** \brief Set IP4 directed broadcast + The directed broadcast enabled a packet sent to the interface's + subnet address will be broadcast on the interface + @param sw_if_index + @param enable +*/ +autoreply define sw_interface_set_ip_directed_broadcast +{ + u32 client_index; + u32 context; + u32 sw_if_index; + u8 enable; +}; + /** \brief Interface Event generated by want_interface_events @param client_index - opaque cookie to identify the sender -- cgit 1.2.3-korg