X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvnet%2Fgre%2Finterface.c;h=48eec35d8ffacb9586add7b73424ac33fd3599bd;hb=e6b83059af3365ab12bbe93655a7dea6f691dbda;hp=f5a1bde527f3d384c6fac76741be8c41bbc658e5;hpb=5ef25165b505f761a099e6c3bc06569cfef74f26;p=vpp.git diff --git a/src/vnet/gre/interface.c b/src/vnet/gre/interface.c index f5a1bde527f..48eec35d8ff 100644 --- a/src/vnet/gre/interface.c +++ b/src/vnet/gre/interface.c @@ -210,7 +210,7 @@ static void gre_teib_entry_added (const teib_entry_t * ne) { gre_main_t *gm = &gre_main; - const ip46_address_t *nh; + const ip_address_t *nh; gre_tunnel_key_t key; gre_tunnel_t *t; u32 sw_if_index; @@ -244,16 +244,17 @@ gre_teib_entry_added (const teib_entry_t * ne) }; nh = teib_entry_get_peer (ne); adj_nbr_walk_nh (teib_entry_get_sw_if_index (ne), - (ip46_address_is_ip4 (nh) ? + (AF_IP4 == ip_addr_version (nh) ? FIB_PROTOCOL_IP4 : - FIB_PROTOCOL_IP6), nh, mgre_mk_complete_walk, &ctx); + FIB_PROTOCOL_IP6), + &ip_addr_46 (nh), mgre_mk_complete_walk, &ctx); } static void gre_teib_entry_deleted (const teib_entry_t * ne) { gre_main_t *gm = &gre_main; - const ip46_address_t *nh; + const ip_address_t *nh; gre_tunnel_key_t key; gre_tunnel_t *t; u32 sw_if_index; @@ -278,9 +279,10 @@ gre_teib_entry_deleted (const teib_entry_t * ne) /* make all the adjacencies incomplete */ adj_nbr_walk_nh (teib_entry_get_sw_if_index (ne), - (ip46_address_is_ip4 (nh) ? + (AF_IP4 == ip_addr_version (nh) ? FIB_PROTOCOL_IP4 : - FIB_PROTOCOL_IP6), nh, mgre_mk_incomplete_walk, t); + FIB_PROTOCOL_IP6), + &ip_addr_46 (nh), mgre_mk_incomplete_walk, t); } static walk_rc_t