Module Git_mirage_ssh

type endpoint = {
  1. port : int;
  2. hostname : string;
  3. authenticator : Awa.Keys.authenticator option;
  4. user : string;
  5. credentials : [ `Password of string | `Pubkey of Awa.Hostkey.priv ];
  6. path : string;
  7. capabilities : [ `Rd | `Wr ];
}
val git_mirage_ssh_password : string Mimic.value
val git_mirage_ssh_key : Awa.Hostkey.priv Mimic.value
val git_mirage_ssh_authenticator : Awa.Keys.authenticator Mimic.value
module type S = sig ... end
module Make (Mclock : Mirage_clock.MCLOCK) (TCP : Tcpip.Tcp.S) (Time : Mirage_time.S) (Happy_eyeballs : Mimic_happy_eyeballs.S with type flow = TCP.flow) : S