• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/contrib/wpa/wpa_supplicant/

Lines Matching defs:driver

684  * wpa_clear_keys - Clear keys configured for the driver
689 * for the driver.
3327 wpa_msg(wpa_s, MSG_INFO, "Association request to the driver "
3331 * The driver is known to mean what is saying, so we
3453 * When using driver-based BSS selection, we may not know the
3455 * need to notify the driver of this disconnection even in such
3850 if (ap_scan == 2 && os_strcmp(wpa_s->driver->name, "nl80211") == 0) {
3852 "Note: nl80211 driver interface is not designed to be used with ap_scan=2; this can result in connection failures");
4038 "driver");
4045 "driver");
4099 wpa_printf(MSG_ERROR, "Failed to initialize driver "
4105 wpa_s->driver = wpa_drivers[i];
4117 const char *pos, *driver = name;
4123 wpa_msg(wpa_s, MSG_ERROR, "No driver interfaces build into "
4129 /* default to first driver in the list */
4134 pos = os_strchr(driver, ',');
4136 len = pos - driver;
4138 len = os_strlen(driver);
4142 os_strncmp(driver, wpa_drivers[i]->name, len) ==
4144 /* First driver that succeeds wins */
4150 driver = pos + 1;
4153 wpa_msg(wpa_s, MSG_ERROR, "Unsupported driver '%s'", name);
4166 * This function is called for each received EAPOL frame. Most driver
4168 * l2_packet, but if such a mechanism is not available, the driver wrapper may
4196 * through different paths from the driver. In order to avoid
4200 * driver-based roaming case, so also use src_addr != BSSID as a
4376 * wpa_supplicant_driver_init - Initialize driver interface parameters
4380 * This function is called to initialize driver interface parameters.
4382 * driver interface.
4411 os_strcmp(wpa_s->driver->name, "nl80211") == 0) {
4413 "Note: nl80211 driver interface is not designed to be used with ap_scan=2; this can result in connection failures");
4422 wpa_dbg(wpa_s, MSG_DEBUG, "RSN: flushing PMKID list in the driver");
5532 const char *ifname, *driver, *rn;
5534 driver = iface->driver;
5536 if (wpa_supplicant_set_driver(wpa_s, driver) < 0)
5542 pos = driver ? os_strchr(driver, ',') : NULL;
5545 "driver interface - try next driver wrapper");
5546 driver = pos + 1;
5549 wpa_msg(wpa_s, MSG_ERROR, "Failed to initialize driver "
5620 wpa_printf(MSG_DEBUG, "Initializing interface '%s' conf '%s' driver "
5623 iface->driver ? iface->driver : "default",
5711 /* Initialize driver interface and register driver event handler before
6157 wpa_printf(MSG_DEBUG, "Override interface parameter: driver "
6159 iface->driver, global->params.override_driver);
6160 t_iface.driver = global->params.override_driver;