search for: vncarg

Displaying 3 results from an estimated 3 matches for "vncarg".

Did you mean: ncarg
2012 Feb 08
7
[PATCH] libxl: Set VNC password through QMP
...l_dm.c index 97d91b4..6f7d0d5 100644 --- a/tools/libxl/libxl_dm.c +++ b/tools/libxl/libxl_dm.c @@ -271,10 +271,8 @@ static char ** libxl__build_device_model_args_new(libxl__gc *gc, if (info->vnc) { int display = 0; const char *listen = "127.0.0.1"; + char *vncarg = NULL; - if (info->vncpasswd && info->vncpasswd[0]) { - assert(!"missing code for supplying vnc password to qemu"); - } flexarray_append(dm_args, "-vnc"); if (info->vncdisplay) { @@ -287,13 +285,16 @@ static char *...
2012 Feb 09
7
[PATCH V2 0/3] Set VNC password to QEMU upstream
Anthony PERARD (3): libxl_qmp: Use GC instead of CTX as parameter for _initialize. Provide dm_vnc() as a in libxl helper. libxl: Set VNC password through QMP tools/libxl/libxl_create.c | 2 +- tools/libxl/libxl_dm.c | 32 ++++++++++++++---------- tools/libxl/libxl_internal.h | 7 ++++- tools/libxl/libxl_qmp.c | 55 ++++++++++++++++++++++++++++++----------- 4 files
2008 Sep 17
2
[Xen-ia64-devel] [PATCH] xm: Don''t spawn vncviewer twice.
...-def spawn_vnc(display): - """Spawns a vncviewer that listens on the specified display. On success, - returns the port that the vncviewer is listening on and sets the global - vncpid. On failure, returns 0. Note that vncviewer is daemonized. - """ - vncargs = (["vncviewer", "-log", "*:stdout:0", - "-listen", "%d" % (VNC_BASE_PORT + display) ]) - global vncpid - vncpid = utils.daemonize("vncviewer", vncargs) - if vncpid == 0: - return 0 - - return VNC_BASE_PORT +...