Skip to content

Commit

Permalink
Tools: hv: Gather address family information
Browse files Browse the repository at this point in the history
Now, gather address family information for the specified interface.

Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Reviewed-by: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
K. Y. Srinivasan authored and Greg Kroah-Hartman committed Aug 17, 2012
1 parent af73301 commit 0d5b6b1
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions tools/hv/hv_kvp_daemon.c
Original file line number Diff line number Diff line change
Expand Up @@ -589,6 +589,17 @@ kvp_get_ip_address(int family, char *if_name, int op,
continue;
}

if (op == KVP_OP_GET_IP_INFO) {
/*
* Gather info other than the IP address.
* IP address info will be gathered later.
*/
if (curp->ifa_addr->sa_family == AF_INET)
ip_buffer->addr_family |= ADDR_FAMILY_IPV4;
else
ip_buffer->addr_family |= ADDR_FAMILY_IPV6;
}

error = kvp_process_ip_address(curp->ifa_addr,
curp->ifa_addr->sa_family,
buffer,
Expand Down

0 comments on commit 0d5b6b1

Please sign in to comment.