View Source VintageNet.Interface.EAPStatus (vintage_net v0.13.3)

Status of an EAP connection.

keys

Keys

  • status Status of the connection.
    • :started - the AP was assosiated and EAP is started.
    • :success - the EAP connection was successful
    • :failure - the EAP connection failed.
  • method - EAP method used to authenticate. See the typespec for available values.
  • timestamp - DateTime of the most recent EAP event.
  • remote_certificate_verified? - if the cert was verified by the EAP server.

Link to this section Summary

Types

Can be one of: as defined in eap_defs.h in the hostapd source. NONE IDENTITY NOTIFICATION NAK MD5 OTP GTC TLS LEAP SIM TTLS AKA PEAP MSCHAPV2 TLV TNC FAST PAX PSK SAKE IKEV2 AKA_PRIME GPSK PWD EKE TEAP EXPANDED

t()

Link to this section Types

@type method() :: String.t()

Can be one of: as defined in eap_defs.h in the hostapd source. NONE IDENTITY NOTIFICATION NAK MD5 OTP GTC TLS LEAP SIM TTLS AKA PEAP MSCHAPV2 TLV TNC FAST PAX PSK SAKE IKEV2 AKA_PRIME GPSK PWD EKE TEAP EXPANDED

@type t() :: %VintageNet.Interface.EAPStatus{
  method: nil | method(),
  remote_certificate_verified?: boolean(),
  status: nil | :started | :failure | :success,
  timestamp: nil | DateTime.t()
}