Home | History | Annotate | Download | only in wpa_supplicant

Lines Matching full:configuration

2  * WPA Supplicant / Configuration parser and common functions
25 * Structure for network configuration parsing. This data is used to implement
26 * a generic parser for each network block variable. The table of configuration
30 /* Configuration variable name */
64 wpa_printf(MSG_DEBUG, "Unset configuration string '%s'",
989 "build time configuration.\n"
1064 wpa_printf(MSG_DEBUG, "Unset configuration string 'password'");
1311 * truncated configuration file line */
1484 /* FUNC: Define a configuration variable that uses a custom function for
1496 * Table of network configuration variables. This table is used to parse each
1497 * network configuration variable, e.g., each line in wpa_supplicant.conf file
1504 * offset to the field containing the length of the configuration variable.
1508 * For each configuration line in wpa_supplicant.conf, the parser goes through
1512 * This kind of mechanism makes it easy to add new configuration parameters,
1654 * @config: Configuration data from wpa_config_read()
1655 * @ssid: Pointer to the network configuration to be added to the list
1660 * configuration. In addition, this can be used indirectly when updating
1708 * @config: Configuration data from wpa_config_read()
1712 * configuration when a network is being added or removed. This is also called
1781 * wpa_config_free_ssid - Free network/ssid configuration data
1782 * @ssid: Configuration data for the network
1784 * This function frees all resources allocated for the network configuration
1835 * wpa_config_free - Free configuration data
1836 * @config: Configuration data from wpa_config_read()
1838 * This function frees all resources allocated for the configuration data by
1905 * @config: Configuration data from wpa_config_read()
1930 * @config: Configuration data from wpa_config_read()
1932 * Returns: Network configuration or %NULL if not found
1950 * wpa_config_add_network - Add a new network with empty configuration
1951 * @config: Configuration data from wpa_config_read()
1952 * Returns: The new network configuration or %NULL if operation failed
1987 * @config: Configuration data from wpa_config_read()
2019 * @ssid: Pointer to network configuration data
2067 * wpa_config_set - Set a variable in network configuration
2068 * @ssid: Pointer to network configuration data
2071 * @line: Line number in configuration file or 0 if not used
2074 * This function can be used to set network configuration variables based on
2075 * both the configuration file and management interface input. The value
2076 * parameter must be in the same format as the text-based configuration file is
2136 * wpa_config_get_all - Get all options from network configuration
2137 * @ssid: Pointer to network configuration data
2199 * wpa_config_get - Get a variable in network configuration
2200 * @ssid: Pointer to network configuration data
2204 * This function can be used to get network configuration variables. The
2205 * returned value is a copy of the configuration variable in text format, i.e,.
2206 * the same format that the text-based configuration file and wpa_config_set()
2228 * wpa_config_get_no_key - Get a variable in network configuration (no keys)
2229 * @ssid: Pointer to network configuration data
2233 * This function can be used to get network configuration variable like
2235 * key/password material from the configuration. In case a key/password field
2238 * returned value is a copy of the configuration variable in text format, i.e,.
2239 * the same format that the text-based configuration file and wpa_config_set()
2277 * @ssid: Pointer to network configuration data
2280 * passphrase has changed for the network configuration.
2538 * wpa_config_get_blob - Get a named configuration blob
2539 * @config: Configuration data from wpa_config_read()
2558 * wpa_config_set_blob - Set or add a named configuration blob
2559 * @config: Configuration data from wpa_config_read()
2562 * Adds a new configuration blob or replaces the current value of an existing
2589 * wpa_config_remove_blob - Remove a named configuration blob
2590 * @config: Configuration data from wpa_config_read()
2617 * wpa_config_alloc_empty - Allocate an empty configuration
2621 * Returns: Pointer to allocated configuration data or %NULL on failure
2669 * @config: Configuration data from wpa_config_read()