mirror of
				https://github.com/Telecominfraproject/wlan-ap.git
				synced 2025-10-30 18:07:52 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			50 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
| Index: hostapd-2021-02-20-59e9794c/hostapd/config_file.c
 | |
| ===================================================================
 | |
| --- hostapd-2021-02-20-59e9794c.orig/hostapd/config_file.c
 | |
| +++ hostapd-2021-02-20-59e9794c/hostapd/config_file.c
 | |
| @@ -3339,6 +3339,8 @@ static int hostapd_config_fill(struct ho
 | |
|  		bss->ignore_broadcast_ssid = atoi(pos);
 | |
|  	} else if (os_strcmp(buf, "no_probe_resp_if_max_sta") == 0) {
 | |
|  		bss->no_probe_resp_if_max_sta = atoi(pos);
 | |
| +	} else if (os_strcmp(buf, "dynamic_probe_resp") == 0) {
 | |
| +		bss->dynamic_probe_resp = atoi(pos);
 | |
|  #ifdef CONFIG_WEP
 | |
|  	} else if (os_strcmp(buf, "wep_default_key") == 0) {
 | |
|  		bss->ssid.wep.idx = atoi(pos);
 | |
| Index: hostapd-2021-02-20-59e9794c/src/ap/ap_config.h
 | |
| ===================================================================
 | |
| --- hostapd-2021-02-20-59e9794c.orig/src/ap/ap_config.h
 | |
| +++ hostapd-2021-02-20-59e9794c/src/ap/ap_config.h
 | |
| @@ -460,6 +460,7 @@ struct hostapd_bss_config {
 | |
|  	int ap_max_inactivity;
 | |
|  	int ignore_broadcast_ssid;
 | |
|  	int no_probe_resp_if_max_sta;
 | |
| +	int dynamic_probe_resp;
 | |
|  
 | |
|  	int wmm_enabled;
 | |
|  	int wmm_uapsd;
 | |
| Index: hostapd-2021-02-20-59e9794c/src/ap/beacon.c
 | |
| ===================================================================
 | |
| --- hostapd-2021-02-20-59e9794c.orig/src/ap/beacon.c
 | |
| +++ hostapd-2021-02-20-59e9794c/src/ap/beacon.c
 | |
| @@ -920,7 +920,8 @@ void handle_probe_req(struct hostapd_dat
 | |
|  	}
 | |
|  #endif /* CONFIG_P2P */
 | |
|  
 | |
| -	if (hapd->conf->ignore_broadcast_ssid && elems.ssid_len == 0 &&
 | |
| +	if (!hapd->conf->dynamic_probe_resp &&
 | |
| +	    hapd->conf->ignore_broadcast_ssid && elems.ssid_len == 0 &&
 | |
|  	    elems.ssid_list_len == 0 && elems.short_ssid_list_len == 0) {
 | |
|  		wpa_printf(MSG_MSGDUMP, "Probe Request from " MACSTR " for "
 | |
|  			   "broadcast SSID ignored", MAC2STR(mgmt->sa));
 | |
| @@ -967,7 +968,8 @@ void handle_probe_req(struct hostapd_dat
 | |
|  		return;
 | |
|  	}
 | |
|  
 | |
| -	if (hapd->conf->ignore_broadcast_ssid && res == WILDCARD_SSID_MATCH) {
 | |
| +	if (!hapd->conf->dynamic_probe_resp &&
 | |
| +	    hapd->conf->ignore_broadcast_ssid && res == WILDCARD_SSID_MATCH) {
 | |
|  		wpa_printf(MSG_MSGDUMP, "Probe Request from " MACSTR " for "
 | |
|  			   "broadcast SSID ignored", MAC2STR(mgmt->sa));
 | |
|  		return;
 | 
