On Fri, Jan 06, 2017 at 09:23:24AM -0600, Eric Blake wrote: > On 01/05/2017 10:06 AM, Daniel P. Berrange wrote: > > Currently there is only a single listener for plain VNC and > > a single listener for websockets VNC. This means that is > > s/is/if/ > > > getaddrinfo() returns multiple IP addresses, for a hostname, > > the VNC server can only listen on one of them. This is > > just bearable if listening on wildcard interface, or if > > the host only has a single network interface to listen on, > > but if there are multiple NICs and the VNC server needs > > to listen on 2 or more specific IP addresses, it can't be > > done. > > > > This refactors the VncDisplay state so that it holds an > > array of listening sockets, but still only listens on > > one socket. > > > > Signed-off-by: Daniel P. Berrange <berra...@redhat.com> > > --- > > ui/vnc.c | 103 > > +++++++++++++++++++++++++++++++++++++++++---------------------- > > ui/vnc.h | 10 ++++--- > > 2 files changed, 73 insertions(+), 40 deletions(-) > > Are you using git's order directives to put .h files first?
No special git config at all. > > @@ -3819,30 +3843,36 @@ void vnc_display_open(const char *id, Error **errp) > > vnc_connect(vd, sioc, false, false); > > object_unref(OBJECT(sioc)); > > } else { > > - vd->lsock = qio_channel_socket_new(); > > - qio_channel_set_name(QIO_CHANNEL(vd->lsock), "vnc-listen"); > > - if (qio_channel_socket_listen_sync(vd->lsock, saddr, errp) < 0) { > > + vd->nlsock = 1; > > + vd->lsock = g_new0(QIOChannelSocket *, 1); > > + vd->lsock_tag = g_new0(guint, 1); > > Is guint really the best type here... Yep, guint is what the the Glib main loop uses as the type for tracking GSource IDs. e.g. https://developer.gnome.org/glib/stable/glib-The-Main-Event-Loop.html#g-source-get-id > > > +++ b/ui/vnc.h > > @@ -146,10 +146,12 @@ struct VncDisplay > > int num_exclusive; > > int connections_limit; > > VncSharePolicy share_policy; > > - QIOChannelSocket *lsock; > > - guint lsock_tag; > > - QIOChannelSocket *lwebsock; > > - guint lwebsock_tag; > > + size_t nlsock; > > + QIOChannelSocket **lsock; > > + guint *lsock_tag; > > ...and here? > > > + size_t nlwebsock; > > + QIOChannelSocket **lwebsock; > > + guint *lwebsock_tag; > > DisplaySurface *ds; > > DisplayChangeListener dcl; > > kbd_layout_t *kbd_layout; > > > > Whether or not you tweak the types to something a little more direct (I > thing guint is more hassle than it's worth when not directly passing the > field to glib functions), It'll be passed to g_source_remove later which expects guint https://developer.gnome.org/glib/stable/glib-The-Main-Event-Loop.html#g-source-remove > Reviewed-by: Eric Blake <ebl...@redhat.com> Regards, Daniel -- |: http://berrange.com -o- http://www.flickr.com/photos/dberrange/ :| |: http://libvirt.org -o- http://virt-manager.org :| |: http://entangle-photo.org -o- http://search.cpan.org/~danberr/ :|