Description

Bitwise-able fields requested to the agent.

Fields

  • name - Used for hidden WiFi access points. If SSID is present, this is an alternative to that.
  • ssid - Used for hidden WiFi access points. If name is present, this is an alternative to that.
  • username - Identity or username requested
  • passphrase - Password or passphrase requested
  • wps - Use WPS authentication. If passphrase is present, this is an alternative to that.

Signature

enum Efl.Net.Control.Agent_Request_Input_Field {
    name: 1 >> 0,
    ssid: 1 >> 1,
    username: 1 >> 2,
    passphrase: 1 >> 3,
    wps: 1 >> 4
}

C signature

typedef enum {
    EFL_NET_CONTROL_AGENT_REQUEST_INPUT_FIELD_NAME = 1 /* 1 >> 0 */,
    EFL_NET_CONTROL_AGENT_REQUEST_INPUT_FIELD_SSID = 2 /* 1 >> 1 */,
    EFL_NET_CONTROL_AGENT_REQUEST_INPUT_FIELD_USERNAME = 4 /* 1 >> 2 */,
    EFL_NET_CONTROL_AGENT_REQUEST_INPUT_FIELD_PASSPHRASE = 8 /* 1 >> 3 */,
    EFL_NET_CONTROL_AGENT_REQUEST_INPUT_FIELD_WPS = 16 /* 1 >> 4 */
} Efl_Net_Control_Agent_Request_Input_Field;