From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1L00ZT-0002aF-2l for qemu-devel@nongnu.org; Tue, 11 Nov 2008 16:14:47 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1L00ZR-0002YQ-KA for qemu-devel@nongnu.org; Tue, 11 Nov 2008 16:14:46 -0500 Received: from [199.232.76.173] (port=35802 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1L00ZR-0002YD-4k for qemu-devel@nongnu.org; Tue, 11 Nov 2008 16:14:45 -0500 Received: from mx2.redhat.com ([66.187.237.31]:45347) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1L00ZO-0007uS-54 for qemu-devel@nongnu.org; Tue, 11 Nov 2008 16:14:44 -0500 Message-ID: <4919F5BB.6000805@redhat.com> Date: Tue, 11 Nov 2008 22:14:35 +0100 From: Gerd Hoffmann MIME-Version: 1.0 Subject: Re: [Qemu-devel] [PATCH 1/3] sockets: helper functions for qemu. References: <1225730550-31941-1-git-send-email-kraxel@redhat.com> <1225730550-31941-2-git-send-email-kraxel@redhat.com> <4919EDED.7070605@codemonkey.ws> In-Reply-To: <4919EDED.7070605@codemonkey.ws> Content-Type: multipart/mixed; boundary="------------030007060104000106060309" Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Anthony Liguori Cc: qemu-devel@nongnu.org This is a multi-part message in MIME format. --------------030007060104000106060309 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Anthony Liguori wrote: > Gerd Hoffmann wrote: >> This patch creates a new source file qemu-sockets.c with a bunch of >> helper functions to create listening and connected sockets. >> >> New features of this code are (a) support for searching for a free >> port in a given range and (b) support for IPv6. >> >> The following patches put that code into use. >> > > I'm going to apply this series but can you follow up with > copyright/licenses for each of the files you add? It is just one new file, here we go. thanks, Gerd --------------030007060104000106060309 Content-Type: text/plain; name="0052-sockets-add-copyright-and-license.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="0052-sockets-add-copyright-and-license.patch" >>From 43d430ad432bc05c8a3e1b63d1d4822b8e781e6a Mon Sep 17 00:00:00 2001 From: Gerd Hoffmann Date: Tue, 11 Nov 2008 21:58:41 +0100 Subject: [PATCH] sockets: add copyright and license. Signed-off-by: Gerd Hoffmann --- qemu-sockets.c | 14 ++++++++++++++ 1 files changed, 14 insertions(+), 0 deletions(-) diff --git a/qemu-sockets.c b/qemu-sockets.c index 77d9921..509d2a5 100644 --- a/qemu-sockets.c +++ b/qemu-sockets.c @@ -1,3 +1,17 @@ +/* + * inet and unix socket functions for qemu + * + * (c) 2008 Gerd Hoffmann + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; under version 2 of the License. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + */ #include #include #include -- 1.5.6.5 --------------030007060104000106060309--