search for: uuidlen

Displaying 4 results from an estimated 4 matches for "uuidlen".

Did you mean: uuidgen
2010 Jun 17
4
[PATCH] Improve support for exporting btrfs subvolumes.
...l; + if (strcmp(type, "TYPE") == 0 && + strcmp(val, "btrfs") == 0) { + uuid = NULL; break; + } + } blkid_tag_iterate_end(iter); - return val; + return uuid; } #else #define get_uuid_blkdev(path) (NULL) #endif -int get_uuid(char *path, char *uuid, int uuidlen, char *u) +int get_uuid(const char *val, int uuidlen, char *u) { /* extract hex digits from uuidstr and compose a uuid * of the given length (max 16), xoring bytes to make - * a smaller uuid. Then compare with uuid + * a smaller uuid. */ int i = 0; - const char *val = NULL; - char fsi...
2009 Jul 23
1
viewer updates for fedora submission
This patchset provides updates to the viewer in preperation for its fedora submission. Included are patches cmd-line parameterizing hostname/user/pass/vm, the addition of a man page, cleanup of the project's structure, and updates to the spec.
2009 Jul 13
0
[PATCH viewer] permit hostname / username / password / vm to be passed in via the cmd line
...ata(vmlist, i))->description, vm_name)){ + connect_to_vm((struct vm*) g_slist_nth_data(vmlist, i)); + break; + } + } +} + +static void +connect_to_vm(struct vm* _vm){ + struct vm *vm = _vm; int n = gtk_notebook_get_n_pages (GTK_NOTEBOOK (notebook)); int i, uuidlen, len, fd; GtkWidget *child; @@ -1144,5 +1208,5 @@ add_vm_to_connectmenu (gpointer _vm, gpointer data) gtk_menu_append (GTK_MENU (connectmenu), item); g_signal_connect (G_OBJECT (item), "activate", - G_CALLBACK (connect_to_vm), vm); + G_CALLBACK (connect_to_vm_via_widg...
2009 May 19
2
[PATCH server] added ovirt vnc proxy server, to proxy vnc request to managed vms
run on startup by default like the other ovirt services --- conf/ovirt-vnc-proxy | 49 ++++++++ installer/modules/ovirt/manifests/ovirt.pp | 1 + ovirt-server.spec.in | 5 + src/vnc-proxy/vnc-proxy.rb | 167 ++++++++++++++++++++++++++++ 4 files changed, 222 insertions(+), 0 deletions(-) create mode 100755 conf/ovirt-vnc-proxy