1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
(* virt-v2v
* Copyright (C) 2009-2025 Red Hat Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*)
(** Network, bridge and MAC address mapping. *)
type t (** The map. *)
val create : unit -> t
(** Create an empty mapping. *)
val add_network : t -> string -> string -> unit
(** Add a network mapping from C<in> to C<out>.
Equivalent to the [--network in:out] option. *)
val add_default_network : t -> string -> unit
(** Add a default network mapping.
Equivalent to the [--network out] option. *)
val add_bridge : t -> string -> string -> unit
(** Add a bridge mapping from C<in> to C<out>.
Equivalent to the [--bridge in:out] option. *)
val add_default_bridge : t -> string -> unit
(** Add a default bridge mapping.
Equivalent to the [--bridge out] option. *)
val add_mac : t -> string -> Types.vnet_type -> string -> unit
(** Add a MAC address mapping.
Equivalent to the [-mac MAC:<network|bridge>:out] option. *)
val map : t -> Types.source_nic -> Types.source_nic
(** Apply the mapping to the source NIC, returning the updated
NIC with possibly modified [s_vnet] and [s_vnet_type] fields.
MAC address mappings take precedence, followed by network
and bridge mappings if no MAC address mapping for the NIC can
be found. *)
|