Displaying 3 results from an estimated 3 matches for "uristr".
Did you mean:
unistr
2009 Mar 13
4
Custom .c32 module which can send tcp or udp packets
I need to write a custom .c32 module which can send information over to a separated service or tftp deamon. The goal is to send inventory information gathered in pxelinux to be transfered back to the inventory database without booting a kernel or os-image.
Is this possible and if so, can you give me a hint how to realise this?
Thanks,
Daniel
2009 Apr 26
3
memdisk issue with gpxelinux.0
Helle,
I'm facing a strange issue with memdisk
The context :
syslinux 3.75
gpxelinux.0
the gpxe stript called from a menu executed through menu.c32 :
#!gpxe
kernel /modules/memdisk initrd=/freedos
initrd /freedos
The output before the freeze :
/boot.gpxe. ok
/modules/memdisk. ok
/freedos...... ok
MEMDISK 3.75 3.75 Copyright 2001-2009 H. Peter Anvin et al
e820: 0000000000000000
2017 Jun 27
3
[PATCH] libvirt: disallow non-local connections (RHBZ#1347830)
...uot;base64.h"
@@ -203,7 +204,9 @@ guestfs_impl_add_libvirt_dom (guestfs_h *g, void *domvp,
size_t ckp;
struct add_disk_data data;
CLEANUP_XMLFREEDOC xmlDocPtr doc = NULL;
- CLEANUP_FREE char *label = NULL, *imagelabel = NULL;
+ CLEANUP_FREE char *label = NULL, *imagelabel = NULL, *uristr = NULL;
+ virConnectPtr conn;
+ CLEANUP_XMLFREEURI xmlURIPtr uri = NULL;
readonly =
optargs->bitmask & GUESTFS_ADD_LIBVIRT_DOM_READONLY_BITMASK
@@ -247,6 +250,37 @@ guestfs_impl_add_libvirt_dom (guestfs_h *g, void *domvp,
return -1;
}
+ conn = virDomainGetConnect (dom)...