From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47050) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZCHoR-0003DZ-Al for qemu-devel@nongnu.org; Mon, 06 Jul 2015 21:36:44 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZCHoJ-00010e-4e for qemu-devel@nongnu.org; Mon, 06 Jul 2015 21:36:43 -0400 Received: from e18.ny.us.ibm.com ([129.33.205.208]:45186) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZCHoI-00010O-VE for qemu-devel@nongnu.org; Mon, 06 Jul 2015 21:36:35 -0400 Received: from /spool/local by e18.ny.us.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Mon, 6 Jul 2015 21:36:34 -0400 Received: from b01cxnp22034.gho.pok.ibm.com (b01cxnp22034.gho.pok.ibm.com [9.57.198.24]) by d01dlp03.pok.ibm.com (Postfix) with ESMTP id BB87AC90045 for ; Mon, 6 Jul 2015 21:27:37 -0400 (EDT) Received: from d01av01.pok.ibm.com (d01av01.pok.ibm.com [9.56.224.215]) by b01cxnp22034.gho.pok.ibm.com (8.14.9/8.14.9/NCO v10.0) with ESMTP id t671aUZN57147608 for ; Tue, 7 Jul 2015 01:36:30 GMT Received: from d01av01.pok.ibm.com (localhost [127.0.0.1]) by d01av01.pok.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id t671aUMM010210 for ; Mon, 6 Jul 2015 21:36:30 -0400 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Michael Roth In-Reply-To: <1433266867-20748-1-git-send-email-kallan@suse.com> References: <1433266867-20748-1-git-send-email-kallan@suse.com> Message-ID: <20150707013327.17393.60855@loki> Date: Mon, 06 Jul 2015 20:33:27 -0500 Subject: Re: [Qemu-devel] [PATCH v6 0/2] qga: qmp_guest_network_get_interfaces for win32 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Kirk Allan , qemu-devel@nongnu.org Cc: okrishtal@parallels.com, pbonzini@redhat.com, sw@weilnetz.de Quoting Kirk Allan (2015-06-02 12:41:05) > Changes from v5: > - Patch 1/2 removed testing for WINVER in QEMU_CFLAGS. > = > Changes from v4: > - Fixed up the commit messages to remove the utf-8 characters. > = > Changes from v3: > - Patch 1/2 removed setting ARCH_$ARCH > - Patch 2/2 implemented feedback from v3. Use WSAAddressToString for > inet_ntop functionality. WSAStringToAddress is available in all versions > of Windows. > = > This patch set is to implement qmp_guest_network_get_interfaces for win32. > = > This patch set contains two patches: configuration and implementation. > = > The configuration patch adds the iphlpapi library. The implementation > patch for commands-win32.c takes advantage of _WIN32_WINNT if set to 0x600 > or greater for Windows Vista/2008 guests or newer to use OnLinkPrefixLeng= th > for prefixes. WSAStringToAddress is used for inet_ntop functionality. Applied, thanks. > = > Kirk Allan (2): > qga: add win32 library iphlpapi > qga: win32 qmp_guest_network_get_interfaces implementation > = > configure | 2 +- > qga/commands-win32.c | 220 +++++++++++++++++++++++++++++++++++++++++++++= +++++- > 2 files changed, 218 insertions(+), 4 deletions(-) > = > -- = > 1.8.5.6 >=20