Parcourir la source

P2P: Clear off_channel_freq when requesting new remain-on-channel

The driver may end up leaving the current channel when we request
a new remain-on-channel and as such, it is better not assume we can
start new operations like sending an Action frame on the previous
off-channel.
Jouni Malinen il y a 14 ans
Parent
commit
09d660b9e3
1 fichiers modifiés avec 5 ajouts et 1 suppressions
  1. 5 1
      wpa_supplicant/p2p_supplicant.c

+ 5 - 1
wpa_supplicant/p2p_supplicant.c

@@ -569,9 +569,11 @@ static void wpas_send_action_cb(void *eloop_ctx, void *timeout_ctx)
 					   "driver to remain on channel (%u "
 					   "MHz) for Action Frame TX",
 					   wpa_s->pending_action_freq);
-			} else
+			} else {
+				wpa_s->off_channel_freq = 0;
 				wpa_s->roc_waiting_drv_freq =
 					wpa_s->pending_action_freq;
+			}
 		}
 		return;
 	}
@@ -709,6 +711,7 @@ static int wpas_send_action(void *ctx, unsigned int freq, const u8 *dst,
 			   "Frame TX", freq);
 		return -1;
 	}
+	wpa_s->off_channel_freq = 0;
 	wpa_s->roc_waiting_drv_freq = freq;
 
 	return 0;
@@ -1098,6 +1101,7 @@ static int wpas_start_listen(void *ctx, unsigned int freq,
 		wpa_s->pending_listen_freq = 0;
 		return -1;
 	}
+	wpa_s->off_channel_freq = 0;
 	wpa_s->roc_waiting_drv_freq = freq;
 
 	return 0;