Displaying 2 results from an estimated 2 matches for "vnc_read_when".
2006 Sep 26
15
RE: Individual passwords for guest VNC servers ?
> Thanks all point about security, I''ll do as follows.
> I thought that the point was the following two. 
> 
> 
> 1. Storage place of encrypted password
>   Should I store it in /etc/xen/passwd ?
>     Or, should I wait for DB of Xen that will be released in 
> the future?
The xend life cycle management patches were posted by Alistair a couple
of months back.
2009 Mar 02
0
[PATCH 4 of 13] DisplayState interface change
...{
 	VNC_DEBUG("New client on socket %d\n", vs->csock);
-	vs->ds->idle = 0;
+	dcl->idle = 0;
         socket_set_nonblock(vs->csock);
 	qemu_set_fd_handler2(vs->csock, NULL, vnc_client_read, NULL, opaque);
 	vnc_write(vs, "RFB 003.008\n", 12);
 	vnc_flush(vs);
 	vnc_read_when(vs, protocol_version, 12);
-	framebuffer_set_updated(vs, 0, 0, vs->ds->width, vs->ds->height);
+	framebuffer_set_updated(vs, 0, 0, ds_get_width(vs->ds), ds_get_height(vs->ds));
 	vs->has_resize = 0;
 	vs->has_hextile = 0;
         vs->update_requested = 0;
-	vs->ds->...