Home | History | Annotate | Download | only in wpa_supplicant

Lines Matching full:configuration

2  * WPA Supplicant / Configuration file structures
30 * struct wpa_config - wpa_supplicant configuration data
32 * This data structure is presents the per-interface (radio) configuration
66 * configuration value can be used to set it to the new version (2).
92 * in this mode, the network blocks in the configuration are tried
106 * in configuration is used to determine whether the control interface
112 * information and configuration. The socket file will be named based
123 * configuration and open raw sockets) and still allow GUI/CLI
126 * configuration, this access needs to be protected in many
176 * This is an OpenSSL specific configuration option for loading OpenSC
184 * This is an OpenSSL specific configuration option for loading PKCS#11
192 * This is an OpenSSL specific configuration option for configuring
234 * update_config - Is wpa_supplicant allowed to update configuration
237 * its configuration with wpa_config_write(). If this is zero,
238 * configuration data is only changed in memory and the external data
240 * the configuration data (e.g., a file) whenever configuration is
241 * changed. This update may replace the old configuration which can
242 * remove comments from it in case of a text file configuration.
247 * blobs - Configuration blobs
364 * wpa_config_read - Read and parse configuration database
365 * @name: Name of the configuration (e.g., path and file name for the
366 * configuration file)
367 * Returns: Pointer to allocated configuration data or %NULL on failure
369 * This function reads configuration data, parses its contents, and allocates
370 * data structures needed for storing configuration information. The allocated
373 * Each configuration backend needs to implement this function.
378 * wpa_config_write - Write or update configuration data
379 * @name: Name of the configuration (e.g., path and file name for the
380 * configuration file)
381 * @config: Configuration data from wpa_config_read()
384 * This function write all configuration data into an external database (e.g.,
386 * be used to allow wpa_supplicant to update its configuration, e.g., when a
389 * Each configuration backend needs to implement this function.