Lines Matching full:configuration
2 * WPA Supplicant / Configuration file structures
49 * configuration file or when a new credential is added through the
104 * Alternatively, a named configuration blob can be used by setting
131 * Alternatively, a named configuration blob can be used by setting
227 * struct wpa_config - wpa_supplicant configuration data
229 * This data structure is presents the per-interface (radio) configuration
270 * configuration value can be used to set it to the new version (2).
296 * in this mode, the network blocks in the configuration are tried
307 * indicates support for this (sched_scan). This configuration
319 * in configuration is used to determine whether the control interface
325 * information and configuration. The socket file will be named based
336 * configuration and open raw sockets) and still allow GUI/CLI
339 * configuration, this access needs to be protected in many
388 * This is an OpenSSL specific configuration option for loading OpenSC
396 * This is an OpenSSL specific configuration option for loading PKCS#11
404 * This is an OpenSSL specific configuration option for configuring
462 * update_config - Is wpa_supplicant allowed to update configuration
465 * its configuration with wpa_config_write(). If this is zero,
466 * configuration data is only changed in memory and the external data
468 * the configuration data (e.g., a file) whenever configuration is
469 * changed. This update may replace the old configuration which can
470 * remove comments from it in case of a text file configuration.
475 * blobs - Configuration blobs
523 * This is a space-separated list of supported WPS configuration
708 * configuration method supported by the AP in Enrollee role, i.e., to
711 * If pbc_in_m1=1 is included in the configuration file, the PushButton
731 * included in the configuration (1) or generated dynamically (0). Only
732 * the former case is re-written back to the configuration file.
945 * wpa_config_read - Read and parse configuration database
946 * @name: Name of the configuration (e.g., path and file name for the
947 * configuration file)
948 * @cfgp: Pointer to previously allocated configuration data or %NULL if none
949 * Returns: Pointer to allocated configuration data or %NULL on failure
951 * This function reads configuration data, parses its contents, and allocates
952 * data structures needed for storing configuration information. The allocated
955 * Each configuration backend needs to implement this function.
960 * wpa_config_write - Write or update configuration data
961 * @name: Name of the configuration (e.g., path and file name for the
962 * configuration file)
963 * @config: Configuration data from wpa_config_read()
966 * This function write all configuration data into an external database (e.g.,
968 * be used to allow wpa_supplicant to update its configuration, e.g., when a
971 * Each configuration backend needs to implement this function.