mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-04-29 04:25:43 +00:00
lib: make if_lookup_by_name_all_vrf internal
This function doesn't work correctly with netns VRF backend as the same ifname may be used in multiple netns simultaneously. So let's hide it from the public API to reduce temptation to use it instead of writing the correct code. Signed-off-by: Igor Ryzhov <iryzhov@nfware.com>
This commit is contained in:
parent
f13fdc673c
commit
0df2e1888b
2
lib/if.c
2
lib/if.c
@ -431,7 +431,7 @@ struct interface *if_lookup_by_name_vrf(const char *name, struct vrf *vrf)
|
||||
return RB_FIND(if_name_head, &vrf->ifaces_by_name, &if_tmp);
|
||||
}
|
||||
|
||||
struct interface *if_lookup_by_name_all_vrf(const char *name)
|
||||
static struct interface *if_lookup_by_name_all_vrf(const char *name)
|
||||
{
|
||||
struct vrf *vrf;
|
||||
struct interface *ifp;
|
||||
|
1
lib/if.h
1
lib/if.h
@ -529,7 +529,6 @@ size_t if_lookup_by_hwaddr(const uint8_t *hw_addr, size_t addrsz,
|
||||
struct interface ***result, vrf_id_t vrf_id);
|
||||
|
||||
struct vrf;
|
||||
extern struct interface *if_lookup_by_name_all_vrf(const char *ifname);
|
||||
extern struct interface *if_lookup_by_name_vrf(const char *name, struct vrf *vrf);
|
||||
extern struct interface *if_lookup_by_name(const char *ifname, vrf_id_t vrf_id);
|
||||
extern struct interface *if_get_by_name(const char *ifname, vrf_id_t vrf_id);
|
||||
|
Loading…
Reference in New Issue
Block a user