Skip to content

Commit

Permalink
Merge pull request #93 from johnelse/cp-13861
Browse files Browse the repository at this point in the history
CP-13861: Add guest agent feature licensing interface
  • Loading branch information
robhoes committed Aug 26, 2015
2 parents 9731d4d + 16f7b3a commit 40b22d5
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions xen/xenops_interface.ml
Original file line number Diff line number Diff line change
Expand Up @@ -555,6 +555,12 @@ module Host = struct
cpu_info: cpu_info;
hypervisor: hypervisor;
}

type guest_agent_feature = {
name : string;
licensed : bool;
parameters : (string * string) list;
}
end

module TASK = struct
Expand All @@ -571,6 +577,8 @@ module HOST = struct
external send_debug_keys: debug_info -> string -> unit = ""
external set_worker_pool_size: debug_info -> int -> unit = ""
external mask_features: debug_info -> string -> string -> string = ""
external update_guest_agent_features: debug_info ->
Host.guest_agent_feature list -> unit = ""
end

module VM = struct
Expand Down

0 comments on commit 40b22d5

Please sign in to comment.