Re: [Spice-devel] autoconf for slirp

2010-03-30 Thread Yonit Halperin
On 03/28/2010 02:30 PM, Alexander Larsson wrote: On Sun, 2010-03-28 at 09:03 +0300, Yonit Halperin wrote: On 03/26/2010 11:45 AM, Alexander Larsson wrote: On Fri, 2010-03-26 at 10:25 +1000, Dave Airlie wrote: this is quick and dirty, and not completely tested yet, but it makes my life a litt

[Spice-devel] [PATCH 1/3] VDInterface: redesign.

2010-03-30 Thread Gerd Hoffmann
VDInterface has been renamed to SpiceBaseInterface. Dropped base_version element, shlib versioning should be used instead. Dropped id element, it is passed to spice_server_add_interface() instead. Now SpiceBaseInterface has static information only, multiple interface instances can share it. Adde

[Spice-devel] [PATCH 2/3] s/CoreInterface/SpiceCoreInterface/

2010-03-30 Thread Gerd Hoffmann
Signed-off-by: Gerd Hoffmann --- server/red_channel.c |3 ++- server/red_channel.h |5 +++-- server/red_tunnel_worker.c |5 +++-- server/red_tunnel_worker.h |2 +- server/reds.c | 14 -- server/reds.h |2 +- server/spice.h

[Spice-devel] [PATCH 3/3] KeyboardInterface: redesign.

2010-03-30 Thread Gerd Hoffmann
This is the direction I wanna take with all interfaces: Clearly separate interface (aka version information and function pointers) and state information. SpiceKbdInterface defines the interface, SpiceKbdState maintains state information. Keyboard hasn't much beside a pointer to SpiceKbdInterface

[Spice-devel] [PATCH 0/3] spice interface redesign.

2010-03-30 Thread Gerd Hoffmann
Hi, This is a early, RfC patch series for a spice interface redesign. For now only VDInterface, CoreInterface and KeyboardInterface are touched. I'm sending them now to gather comments on the general direction and design. The bits are compile-tested only, I didn't adapt my qemu patches yet. c