X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=ocaml%2Fguestfs.mli;h=21e6eeb52abe71829f79d94d1d6f5a0779090221;hb=c419731e3a04333aea7d1af7e1069221a34344a5;hp=810c49a4b249da51846e0b9fc97622bcb5d46ad2;hpb=24bee20ce4196d45891925332a47a05aa5e40938;p=libguestfs.git diff --git a/ocaml/guestfs.mli b/ocaml/guestfs.mli index 810c49a..21e6eeb 100644 --- a/ocaml/guestfs.mli +++ b/ocaml/guestfs.mli @@ -187,6 +187,9 @@ val set_busy : t -> unit val set_ready : t -> unit (** set state to ready *) +val end_busy : t -> unit +(** leave the busy state *) + val mount : t -> string -> string -> unit (** mount a guest disk at a position in the filesystem *) @@ -460,3 +463,18 @@ val drop_caches : t -> int -> unit val dmesg : t -> string (** return kernel messages *) +val ping_daemon : t -> unit +(** ping the guest daemon *) + +val equal : t -> string -> string -> bool +(** test if two files have equal contents *) + +val strings : t -> string -> string array +(** print the printable strings in a file *) + +val strings_e : t -> string -> string -> string array +(** print the printable strings in a file *) + +val hexdump : t -> string -> string +(** dump a file in hexadecimal *) +