Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

msg: filter out lo addr when bind osd addr #7012

Merged
merged 1 commit into from Jan 6, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/common/ipaddr.cc
Expand Up @@ -34,6 +34,9 @@ const struct sockaddr *find_ipv4_in_subnet(const struct ifaddrs *addrs,
if (addrs->ifa_addr == NULL)
continue;

if (strcmp(addrs->ifa_name, "lo") == 0)
continue;

if (addrs->ifa_addr->sa_family != net->sin_family)
continue;

Expand Down Expand Up @@ -75,6 +78,9 @@ const struct sockaddr *find_ipv6_in_subnet(const struct ifaddrs *addrs,
if (addrs->ifa_addr == NULL)
continue;

if (strcmp(addrs->ifa_name, "lo") == 0)
continue;

if (addrs->ifa_addr->sa_family != net->sin6_family)
continue;

Expand Down