Lines Matching full:configuration
2 * WPA Supplicant / Configuration file structures
25 * struct wpa_config_blob - Named configuration blob
29 * configuration data.
48 * next - Pointer to next blob in the configuration
55 * struct wpa_config - wpa_supplicant configuration data
57 * This data structure is presents the per-interface (radio) configuration
91 * configuration value can be used to set it to the new version (2).
117 * in this mode, the network blocks in the configuration are tried
131 * in configuration is used to determine whether the control interface
137 * information and configuration. The socket file will be named based
148 * configuration and open raw sockets) and still allow GUI/CLI
151 * configuration, this access needs to be protected in many
200 * This is an OpenSSL specific configuration option for loading OpenSC
208 * This is an OpenSSL specific configuration option for loading PKCS#11
216 * This is an OpenSSL specific configuration option for configuring
257 * update_config - Is wpa_supplicant allowed to update configuration
260 * its configuration with wpa_config_write(). If this is zero,
261 * configuration data is only changed in memory and the external data
263 * the configuration data (e.g., a file) whenever configuration is
264 * changed. This update may replace the old configuration which can
265 * remove comments from it in case of a text file configuration.
270 * blobs - Configuration blobs
310 * wpa_config_read - Read and parse configuration database
311 * @name: Name of the configuration (e.g., path and file name for the
312 * configuration file)
313 * Returns: Pointer to allocated configuration data or %NULL on failure
315 * This function reads configuration data, parses its contents, and allocates
316 * data structures needed for storing configuration information. The allocated
319 * Each configuration backend needs to implement this function.
324 * wpa_config_write - Write or update configuration data
325 * @name: Name of the configuration (e.g., path and file name for the
326 * configuration file)
327 * @config: Configuration data from wpa_config_read()
330 * This function write all configuration data into an external database (e.g.,
332 * be used to allow wpa_supplicant to update its configuration, e.g., when a
335 * Each configuration backend needs to implement this function.