Re: [Qemu-devel] [PATCH 0/6] vnc: add support for multiple vnc server instances.

2014-10-15 Thread Eric Blake
On 10/15/2014 06:19 AM, Gerd Hoffmann wrote: > Hi, > > This patch series adds support for multiple vnc server instances to > qemu. This comes handy in multiseat configurations as you can have > one vnc server for each set then. > > Some cleanups along the way (use QemuOpts). Also added suppor

Re: [Qemu-devel] [PATCH 0/6] vnc: add support for multiple vnc server instances.

2014-10-15 Thread Daniel P. Berrange
On Wed, Oct 15, 2014 at 04:29:47PM +0200, Gerd Hoffmann wrote: > Hi, > > > > To be done: monitor support. I think the best way to handle this is to > > > introduce a new command to query vnc server state, which returns a list > > > of vnc servers but otherwise works like "query-vnc". Alternati

Re: [Qemu-devel] [PATCH 0/6] vnc: add support for multiple vnc server instances.

2014-10-15 Thread Gerd Hoffmann
Hi, > I think we are going to need to make one ACL list per seat. eg > >qemu_acl_init("vnc.x509dname") (validates x509 certificate on seat 0) >qemu_acl_init("vnc.username")(validates SASL user name on seat 0) > >qemu_acl_init("vnc.x509dname.1") (validates x509 certificate o

Re: [Qemu-devel] [PATCH 0/6] vnc: add support for multiple vnc server instances.

2014-10-15 Thread Gerd Hoffmann
Hi, > > To be done: monitor support. I think the best way to handle this is to > > introduce a new command to query vnc server state, which returns a list > > of vnc servers but otherwise works like "query-vnc". Alternative > > approach would be to add a optional 'id=' parameter to query-vnc,

Re: [Qemu-devel] [PATCH 0/6] vnc: add support for multiple vnc server instances.

2014-10-15 Thread Daniel P. Berrange
On Wed, Oct 15, 2014 at 02:19:39PM +0200, Gerd Hoffmann wrote: > Hi, > > This patch series adds support for multiple vnc server instances to > qemu. This comes handy in multiseat configurations as you can have > one vnc server for each set then. > > Some cleanups along the way (use QemuOpts).

Re: [Qemu-devel] [PATCH 0/6] vnc: add support for multiple vnc server instances.

2014-10-15 Thread Daniel P. Berrange
On Wed, Oct 15, 2014 at 02:19:39PM +0200, Gerd Hoffmann wrote: > Hi, > > This patch series adds support for multiple vnc server instances to > qemu. This comes handy in multiseat configurations as you can have > one vnc server for each set then. > > Some cleanups along the way (use QemuOpts).

[Qemu-devel] [PATCH 0/6] vnc: add support for multiple vnc server instances.

2014-10-15 Thread Gerd Hoffmann
Hi, This patch series adds support for multiple vnc server instances to qemu. This comes handy in multiseat configurations as you can have one vnc server for each set then. Some cleanups along the way (use QemuOpts). Also added support for limiting the number of parallel vnc connections. To