summaryrefslogtreecommitdiffstats
path: root/nhrpd
diff options
context:
space:
mode:
authorDonatas Abraitis <donatas.abraitis@gmail.com>2021-12-01 07:12:33 +0100
committerGitHub <noreply@github.com>2021-12-01 07:12:33 +0100
commite2144103f81c5bd46f734bc94e1dbc0aebb66f6e (patch)
treeb7a657150a5c54a2a196476047bb90d3d5ec5c41 /nhrpd
parentMerge pull request #9610 from iqras23/best_path (diff)
parentlib: resolver per vrf support (diff)
downloadfrr-e2144103f81c5bd46f734bc94e1dbc0aebb66f6e.tar.xz
frr-e2144103f81c5bd46f734bc94e1dbc0aebb66f6e.zip
Merge pull request #9878 from pguibert6WIND/resolver_vrf
lib: resolver per vrf support
Diffstat (limited to 'nhrpd')
-rw-r--r--nhrpd/nhrp_nhs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nhrpd/nhrp_nhs.c b/nhrpd/nhrp_nhs.c
index 597c125e1..3733910a6 100644
--- a/nhrpd/nhrp_nhs.c
+++ b/nhrpd/nhrp_nhs.c
@@ -324,8 +324,8 @@ static int nhrp_nhs_resolve(struct thread *t)
{
struct nhrp_nhs *nhs = THREAD_ARG(t);
- resolver_resolve(&nhs->dns_resolve, AF_INET, nhs->nbma_fqdn,
- nhrp_nhs_resolve_cb);
+ resolver_resolve(&nhs->dns_resolve, AF_INET, VRF_DEFAULT,
+ nhs->nbma_fqdn, nhrp_nhs_resolve_cb);
return 0;
}