View Source VintageNetWiFi.MeshPeer.Capabilities (vintage_net_wifi v0.12.5)

Capabilities supported by a mesh node

  • power_slave_level: true if at least one of the peer-specific mesh power management modes is deep sleep mode
  • tbtt_adjusting: true while the TBBT adjustment procedure is ongoing.
  • mbca_enabled: true if the station is using MBCA
  • forwarding: true if the station forwards MSDUs
  • mcca_enabled: true if the station uses MCCA
  • mcca_supported: true if the station implements MCCA

Summary

Types

@type t() :: %VintageNetWiFi.MeshPeer.Capabilities{
  accepting_peerings: boolean(),
  forwarding: boolean(),
  mbca_enabled: boolean(),
  mcca_enabled: boolean(),
  mcca_supported: boolean(),
  power_slave_level: boolean(),
  tbtt_adjusting: boolean()
}

Functions

Link to this function

decode_capabilities(arg)

View Source
@spec decode_capabilities(<<_::8>>) :: t()