This does not fix broken links.
----------------------------------------------------------------------
Copyright (C) 2007-2009 Richard W.M. Jones, Red Hat Inc.
-http://libvirt.org/ocaml/
-http://libvirt.org/
+https://libvirt.org/ocaml/
+https://libvirt.org/
This is a complete set of OCaml bindings around libvirt, exposing all
known functionality to OCaml programs.
For documentation on these bindings, read libvirt.mli and/or 'make
doc' and browse the HTML documentation in the html/ subdirectory.
-For documentation on libvirt itself, see http://libvirt.org/html/
+For documentation on libvirt itself, see https://libvirt.org/html/
License
Usage: domain_events [URI]
(C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
(C) Copyright 2013 Citrix Inc
- http://libvirt.org/
+ https://libvirt.org/
*)
open Printf
(* Example of using Domain.get_all_domain_stats (virConnectGetAllDomainStats).
* Usage: get_all_domain_stats
- * http://libvirt.org/
+ * https://libvirt.org/
*)
open Printf
(* List CPU stats for a domain.
* Usage: get_cpu_stats domain
- * http://libvirt.org/
+ * https://libvirt.org/
*)
open Printf
(* Simple demo program showing how to list out domains.
Usage: list_domains [URI]
(C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
- http://libvirt.org/
+ https://libvirt.org/
*)
open Printf
(* Simple demo program showing how to list out secrets.
Usage: list_secrets [URI]
(C) Copyright 2018 Pino Toscano, Red Hat Inc.
- http://libvirt.org/
+ https://libvirt.org/
*)
open Printf
(* Simple demo program showing node info.
Usage: node_info [URI]
(C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
- http://libvirt.org/
+ https://libvirt.org/
*)
open Printf
#
# OCaml bindings for libvirt.
# (C) Copyright 2007-2015 Richard W.M. Jones, Red Hat Inc.
-# http://libvirt.org/
+# https://libvirt.org/
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
/* OCaml bindings for libvirt.
* (C) Copyright 2007-2015 Richard W.M. Jones, Red Hat Inc.
- * http://libvirt.org/
+ * https://libvirt.org/
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
(* OCaml bindings for libvirt.
(C) Copyright 2007-2015 Richard W.M. Jones, Red Hat Inc.
- http://libvirt.org/
+ https://libvirt.org/
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
let uuid_length = 16
let uuid_string_length = 36
-(* http://caml.inria.fr/pub/ml-archives/caml-list/2004/07/80683af867cce6bf8fff273973f70c95.en.html *)
+(* https://caml.inria.fr/pub/ml-archives/caml-list/2004/07/80683af867cce6bf8fff273973f70c95.en.html *)
type rw = [`R|`W]
type ro = [`R]
(** OCaml bindings for libvirt. *)
(* (C) Copyright 2007-2015 Richard W.M. Jones, Red Hat Inc.
- http://libvirt.org/
+ https://libvirt.org/
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
{2 Introduction and examples}
This is a set of bindings for writing OCaml programs to
- manage virtual machines through {{:http://libvirt.org/}libvirt}.
+ manage virtual machines through {{:https://libvirt.org/}libvirt}.
{3 Using libvirt interactively}
The main modules are {!Libvirt.Connect}, {!Libvirt.Domain} and
{!Libvirt.Network} corresponding respectively to the
- {{:http://libvirt.org/html/libvirt-libvirt.html}virConnect*, virDomain* and virNetwork* functions from libvirt}.
+ {{:https://libvirt.org/html/libvirt-libvirt.html}virConnect*, virDomain* and virNetwork* functions from libvirt}.
For brevity I usually rename these modules like this:
{[
type rw = [`R|`W]
type ro = [`R]
(** These
- {{:http://caml.inria.fr/pub/ml-archives/caml-list/2004/07/80683af867cce6bf8fff273973f70c95.en.html}phantom types}
+ {{:https://caml.inria.fr/pub/ml-archives/caml-list/2004/07/80683af867cce6bf8fff273973f70c95.en.html}phantom types}
are used to ensure the type-safety of read-only
versus read-write connections.
not supported at either compile or run time. This applies to
any libvirt function added after version 0.2.1.
- See also {{:http://libvirt.org/hvsupport.html}http://libvirt.org/hvsupport.html}
+ See also {{:https://libvirt.org/hvsupport.html}https://libvirt.org/hvsupport.html}
*)
(** {3 Utility functions} *)
/* OCaml bindings for libvirt.
* (C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
- * http://libvirt.org/
+ * https://libvirt.org/
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
/* OCaml bindings for libvirt.
* (C) Copyright 2007-2017 Richard W.M. Jones, Red Hat Inc.
- * http://libvirt.org/
+ * https://libvirt.org/
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
/* OCaml bindings for libvirt.
* (C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
- * http://libvirt.org/
+ * https://libvirt.org/
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
/* Use this around synchronous libvirt API calls to release the OCaml
* lock, allowing other threads to run simultaneously. 'code' must not
* perform any caml_* calls, run any OCaml code, or raise any exception.
- * http://web.archive.org/web/20030521020915/http://caml.inria.fr/archives/200106/msg00199.html
+ * https://web.archive.org/web/20030521020915/http://caml.inria.fr/archives/200106/msg00199.html
*/
#define NONBLOCKING(code) \
do { \
(* Helper module containing the version of the OCaml bindings.
(C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
- http://libvirt.org/
+ https://libvirt.org/
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
(* OCaml bindings for libvirt.
(C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
- http://libvirt.org/
+ https://libvirt.org/
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public