diff options
| author | Linux Build Service Account <lnxbuild@localhost> | 2013-10-15 20:25:39 -0700 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2013-10-15 20:25:39 -0700 |
| commit | 16dfae521ceeeb8ec00f3c74a2bff72389f4847f (patch) | |
| tree | 79300561cfe62febadbdc92b938a069602c4c215 | |
| parent | 2047fa5ecf7afce98b8f8630a075f4c2b39e8a13 (diff) | |
| parent | e415a15c75e59bb12c1d6f424ffa2f155ebdcd3a (diff) | |
| download | android_external_wpa_supplicant_8-16dfae521ceeeb8ec00f3c74a2bff72389f4847f.tar.gz android_external_wpa_supplicant_8-16dfae521ceeeb8ec00f3c74a2bff72389f4847f.tar.bz2 android_external_wpa_supplicant_8-16dfae521ceeeb8ec00f3c74a2bff72389f4847f.zip | |
Merge "P2P: Increase Invitation Request timeouts"
| -rw-r--r-- | src/p2p/p2p_invitation.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/p2p/p2p_invitation.c b/src/p2p/p2p_invitation.c index 11a7727c..858898cf 100644 --- a/src/p2p/p2p_invitation.c +++ b/src/p2p/p2p_invitation.c @@ -507,7 +507,7 @@ int p2p_invite_send(struct p2p_data *p2p, struct p2p_device *dev, dev->invitation_reqs++; if (p2p_send_action(p2p, freq, dev->info.p2p_device_addr, p2p->cfg->dev_addr, dev->info.p2p_device_addr, - wpabuf_head(req), wpabuf_len(req), 200) < 0) { + wpabuf_head(req), wpabuf_len(req), 500) < 0) { wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Failed to send Action frame"); /* Use P2P find to recover and retry */ @@ -537,7 +537,7 @@ void p2p_invitation_req_cb(struct p2p_data *p2p, int success) */ p2p_set_state(p2p, P2P_INVITE); - p2p_set_timeout(p2p, 0, success ? 350000 : 100000); + p2p_set_timeout(p2p, 0, success ? 500000 : 100000); } |
