qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH 1/3] sockets: helper functions for qemu.


From: Gerd Hoffmann
Subject: Re: [Qemu-devel] [PATCH 1/3] sockets: helper functions for qemu.
Date: Tue, 11 Nov 2008 22:14:35 +0100
User-agent: Thunderbird 2.0.0.16 (X11/20080723)

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
>From 43d430ad432bc05c8a3e1b63d1d4822b8e781e6a Mon Sep 17 00:00:00 2001
From: Gerd Hoffmann <address@hidden>
Date: Tue, 11 Nov 2008 21:58:41 +0100
Subject: [PATCH] sockets: add copyright and license.


Signed-off-by: Gerd Hoffmann <address@hidden>
---
 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 <address@hidden>
+ *
+ *  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 <stdio.h>
 #include <stdlib.h>
 #include <string.h>
-- 
1.5.6.5


reply via email to

[Prev in Thread] Current Thread [Next in Thread]