package obus

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type wireless_capability = [
  1. | `Cipher_wep40
    (*

    The device supports the 40-bit WEP cipher.

    *)
  2. | `Cipher_wep104
    (*

    The device supports the 104-bit WEP cipher.

    *)
  3. | `Cipher_tkip
    (*

    The device supports the TKIP cipher.

    *)
  4. | `Cipher_ccmp
    (*

    The device supports the CCMP cipher.

    *)
  5. | `Wpa
    (*

    The device supports the WPA encryption/authentication protocol.

    *)
  6. | `Rsn
    (*

    The device supports the RSN encryption/authentication protocol.

    *)
]
type wifi_mode = [
  1. | `Unknown
    (*

    Mode is unknown.

    *)
  2. | `Adhoc
    (*

    Uncoordinated network without central infrastructure.

    *)
  3. | `Infra
    (*

    Coordinated network with one or more central controllers.

    *)
]
val get_access_points : t -> Nm_access_point.t list Lwt.t
val properties_changed : t -> (string * OBus_value.V.single) list OBus_signal.t
val access_point_added : t -> Nm_access_point.t OBus_signal.t
val access_point_removed : t -> Nm_access_point.t OBus_signal.t
val hw_address : t -> string OBus_property.r
val mode : t -> int OBus_property.r
val bitrate : t -> int OBus_property.r
val active_access_point : t -> OBus_proxy.t OBus_property.r
val wireless_capabilities : t -> int OBus_property.r
val properties : t -> OBus_property.group