/usr/lib/ocaml/obus/nm_ppp.mli is in libobus-ocaml-dev 1.1.5-3build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | (*
* nm_ppp.mli
* ----------
* Copyright : (c) 2010, Jeremie Dimino <jeremie@dimino.org>
* Licence : BSD3
*
* This file is a part of obus, an ocaml implementation of D-Bus.
*)
(** PPP *)
include OBus_proxy.Private
val need_secrets : t -> (string * string) Lwt.t
val set_ip4_config : t -> config : (string * OBus_value.V.single) list -> unit Lwt.t
val set_state : t -> state : int -> unit Lwt.t
|