+Tue May 8 11:14:00 BST 2007 Richard W.M. Jones <rjones@redhat.com>
+
+ * src/hash.c, src/internal.h, src/xs_internal.c: Remove
+ unused fields from internal _virDomain structure.
+
Thu May 3 12:09:41 EST 2007 Daniel P. Berange <berrange@redhat.com>
* qemud/conf.c, qemud/internal.c: Read upto 8k from QEMU
int flags; /* a set of connection flags */
};
-/**
-* virDomainFlags:
-*
-* a set of special flag values associated to the domain
-*/
-
-enum virDomainFlags {
- DOMAIN_IS_SHUTDOWN = (1 << 0), /* the domain is being shutdown */
- DOMAIN_IS_DEFINED = (1 << 1) /* the domain is defined not running */
-};
-
/**
* _virDomain:
*
int uses; /* reference count */
virConnectPtr conn; /* pointer back to the connection */
char *name; /* the domain external name */
- char *path; /* the domain internal path */
int id; /* the domain ID */
- int flags; /* extra flags */
unsigned char uuid[VIR_UUID_BUFLEN]; /* the domain unique identifier */
- char *xml; /* the XML description for defined domains */
};
/**