| /src/external/bsd/wpa/dist/hostapd/ |
| hostapd.conf | 254 max_num_sta=255 347 # is no room for additional stations (max_num_sta). This can be used to
|
| config_file.c | 3056 } else if (os_strcmp(buf, "max_num_sta") == 0) { 3057 bss->max_num_sta = atoi(pos); 3058 if (bss->max_num_sta < 0 || 3059 bss->max_num_sta > MAX_STA_COUNT) { 3060 wpa_printf(MSG_ERROR, "Line %d: Invalid max_num_sta=%d; allowed range 0..%d", 3061 line, bss->max_num_sta, MAX_STA_COUNT);
|
| /src/external/bsd/wpa/dist/wpa_supplicant/ |
| config.h | 970 * max_num_sta - Maximum number of STAs in an AP/P2P GO 972 unsigned int max_num_sta; member in struct:wpa_config
|
| config_winreg.c | 272 wpa_config_read_reg_dword(hk, TEXT("max_num_sta"), 273 (int *) &config->max_num_sta); 634 wpa_config_write_reg_dword(hk, TEXT("max_num_sta"), 635 config->max_num_sta, DEFAULT_MAX_NUM_STA);
|
| ap.c | 802 wpa_s->max_stations < wpa_s->conf->max_num_sta) 803 bss->max_num_sta = wpa_s->max_stations; 805 bss->max_num_sta = wpa_s->conf->max_num_sta;
|
| config_file.c | 1332 if (config->max_num_sta != DEFAULT_MAX_NUM_STA) 1333 fprintf(f, "max_num_sta=%u\n", config->max_num_sta);
|
| p2p_supplicant.c | 2193 d->max_num_sta = s->max_num_sta; 7220 wpa_s->max_stations < wpa_s->conf->max_num_sta) 7223 cfg->max_clients = wpa_s->conf->max_num_sta;
|
| config.c | 4668 config->max_num_sta = DEFAULT_MAX_NUM_STA; 5496 { INT(max_num_sta), 0 },
|
| /src/external/bsd/wpa/dist/src/ap/ |
| sta_info.c | 805 if (hapd->num_sta >= hapd->conf->max_num_sta) { 808 hapd->num_sta, hapd->conf->max_num_sta);
|
| ap_config.h | 294 int max_num_sta; /* maximum number of STAs in station table */ member in struct:hostapd_bss_config
|
| ap_config.c | 86 bss->max_num_sta = MAX_STA_COUNT;
|
| beacon.c | 1564 hapd->num_sta >= hapd->conf->max_num_sta &&
|