Module Libvirt.Event.Graphics_address

module Graphics_address: sig .. end

type family = [ `Ipv4 | `Ipv6 | `Unix | `Unknown of int ] 
type t = {
   family : family; (*

Address family

*)
   node : string option; (*

Address of node (eg IP address, or UNIX path

*)
   service : string option; (*

Service name/number (eg TCP port, or NULL)

*)
}
val to_string : t -> string