Lines Matching full:configuration
2 * WPA Supplicant / Configuration parser and common functions
29 * Structure for network configuration parsing. This data is used to implement
30 * a generic parser for each network block variable. The table of configuration
34 /* Configuration variable name */
104 wpa_printf(MSG_DEBUG, "Unset configuration string '%s'",
981 "build time configuration.\n"
1055 wpa_printf(MSG_DEBUG, "Unset configuration string 'password'");
1305 /* FUNC: Define a configuration variable that uses a custom function for
1317 * Table of network configuration variables. This table is used to parse each
1318 * network configuration variable, e.g., each line in wpa_supplicant.conf file
1325 * offset to the field containing the length of the configuration variable.
1329 * For each configuration line in wpa_supplicant.conf, the parser goes through
1333 * This kind of mechanism makes it easy to add new configuration parameters,
1445 * @config: Configuration data from wpa_config_read()
1446 * @ssid: Pointer to the network configuration to be added to the list
1451 * configuration. In addition, this can be used indirectly when updating
1498 * @config: Configuration data from wpa_config_read()
1502 * configuration when a network is being added or removed. This is also called
1571 * wpa_config_free_ssid - Free network/ssid configuration data
1572 * @ssid: Configuration data for the network
1574 * This function frees all resources allocated for the network configuration
1590 * wpa_config_free - Free configuration data
1591 * @config: Configuration data from wpa_config_read()
1593 * This function frees all resources allocated for the configuration data by
1640 * @config: Configuration data from wpa_config_read()
1642 * Returns: Network configuration or %NULL if not found
1660 * wpa_config_add_network - Add a new network with empty configuration
1661 * @config: Configuration data from wpa_config_read()
1662 * Returns: The new network configuration or %NULL if operation failed
1696 * @config: Configuration data from wpa_config_read()
1728 * @ssid: Pointer to network configuration data
1745 * wpa_config_set - Set a variable in network configuration
1746 * @ssid: Pointer to network configuration data
1749 * @line: Line number in configuration file or 0 if not used
1752 * This function can be used to set network configuration variables based on
1753 * both the configuration file and management interface input. The value
1754 * parameter must be in the same format as the text-based configuration file is
1794 * wpa_config_get - Get a variable in network configuration
1795 * @ssid: Pointer to network configuration data
1799 * This function can be used to get network configuration variables. The
1800 * returned value is a copy of the configuration variable in text format, i.e,.
1801 * the same format that the text-based configuration file and wpa_config_set()
1823 * wpa_config_get_no_key - Get a variable in network configuration (no keys)
1824 * @ssid: Pointer to network configuration data
1828 * This function can be used to get network configuration variable like
1830 * key/password material from the configuration. In case a key/password field
1833 * returned value is a copy of the configuration variable in text format, i.e,.
1834 * the same format that the text-based configuration file and wpa_config_set()
1872 * @ssid: Pointer to network configuration data
1875 * passphrase has changed for the network configuration.
1892 * wpa_config_get_blob - Get a named configuration blob
1893 * @config: Configuration data from wpa_config_read()
1912 * wpa_config_set_blob - Set or add a named configuration blob
1913 * @config: Configuration data from wpa_config_read()
1916 * Adds a new configuration blob or replaces the current value of an existing
1943 * wpa_config_remove_blob - Remove a named configuration blob
1944 * @config: Configuration data from wpa_config_read()
1971 * wpa_config_alloc_empty - Allocate an empty configuration
1975 * Returns: Pointer to allocated configuration data or %NULL on failure
2001 * @config: Configuration data from wpa_config_read()