]> git.proxmox.com Git - mirror_frr.git/blobdiff - lib/if.c
Revert "Merge pull request #11127 from louis-6wind/bgp-leak"
[mirror_frr.git] / lib / if.c
index 6766a04b3716e2eaa82e2685c40b0429b7442688..70c0c18141696d3431a89b573a0641001e6c7fc5 100644 (file)
--- a/lib/if.c
+++ b/lib/if.c
@@ -564,24 +564,9 @@ size_t if_lookup_by_hwaddr(const uint8_t *hw_addr, size_t addrsz,
        return count;
 }
 
-/* Get the VRF loopback interface, i.e. the loopback on the default VRF
- * or the VRF interface.
- */
-struct interface *if_get_vrf_loopback(vrf_id_t vrf_id)
-{
-       struct interface *ifp = NULL;
-       struct vrf *vrf = vrf_lookup_by_id(vrf_id);
-
-       FOR_ALL_INTERFACES (vrf, ifp)
-               if (if_is_loopback(ifp))
-                       return ifp;
-
-       return NULL;
-}
 
 /* Get interface by name if given name interface doesn't exist create
- * one.
- */
+   one. */
 struct interface *if_get_by_name(const char *name, vrf_id_t vrf_id,
                                 const char *vrf_name)
 {