ipsec: IPSec protection for multi-point tunnel interfaces
[vpp.git] / src / vnet / lisp-gpe / lisp_gpe_tenant.c
index 40cf7ed..8da1fd4 100644 (file)
@@ -48,7 +48,7 @@ lisp_gpe_tenant_find_or_create_i (u32 vni)
   if (NULL == lt)
     {
       pool_get (lisp_gpe_tenant_pool, lt);
-      memset (lt, 0, sizeof (*lt));
+      clib_memset (lt, 0, sizeof (*lt));
 
       lt->lt_vni = vni;
       lt->lt_table_id = ~0;
@@ -102,11 +102,13 @@ lisp_gpe_tenant_delete_if_empty (lisp_gpe_tenant_t * lt)
  *
  * @paran vni The tenant's VNI
  * @param table_id the Tenant's L3 table ID.
+ * @param with_default_route Install default route for the interface
  *
  * @return the SW IF index of the L3 interface
  */
 u32
-lisp_gpe_tenant_l3_iface_add_or_lock (u32 vni, u32 table_id)
+lisp_gpe_tenant_l3_iface_add_or_lock (u32 vni, u32 table_id,
+                                     u8 with_default_route)
 {
   lisp_gpe_tenant_t *lt;
 
@@ -121,7 +123,8 @@ lisp_gpe_tenant_l3_iface_add_or_lock (u32 vni, u32 table_id)
     {
       /* create the l3 interface since there are currently no users of it */
       lt->lt_l3_sw_if_index =
-       lisp_gpe_add_l3_iface (&lisp_gpe_main, vni, table_id);
+       lisp_gpe_add_l3_iface (&lisp_gpe_main, vni, table_id,
+                              with_default_route);
     }
 
   lt->lt_locks[LISP_GPE_TENANT_LOCK_L3_IFACE]++;
@@ -272,9 +275,9 @@ lisp_gpe_tenant_flush (void)
  * @brif Show/display one tenant
  */
 static u8 *
-format_lisp_gpe_tenant (u8 * s, va_list ap)
+format_lisp_gpe_tenant (u8 * s, va_list ap)
 {
-  const lisp_gpe_tenant_t *lt = va_arg (ap, lisp_gpe_tenant_t *);
+  const lisp_gpe_tenant_t *lt = va_arg (*ap, lisp_gpe_tenant_t *);
 
   s = format (s, "VNI:%d ", lt->lt_vni);