From: Jouni Malinen Date: Thu, 9 Aug 2012 19:33:27 +0000 (+0300) Subject: AOSP: P2P peer expiration X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=87a728b9c7f88e8e70e73d2adc9e62a15c78df8e;p=thirdparty%2Fhostap.git AOSP: P2P peer expiration --- diff --git a/src/p2p/p2p.c b/src/p2p/p2p.c index c13f4ea60..7b003ac2f 100644 --- a/src/p2p/p2p.c +++ b/src/p2p/p2p.c @@ -42,10 +42,40 @@ static void p2p_scan_timeout(void *eloop_ctx, void *timeout_ctx); * P2P_PEER_EXPIRATION_AGE - Number of seconds after which inactive peer * entries will be removed */ +#ifdef ANDROID_P2P +#define P2P_PEER_EXPIRATION_AGE 30 +#else #define P2P_PEER_EXPIRATION_AGE 300 +#endif #define P2P_PEER_EXPIRATION_INTERVAL (P2P_PEER_EXPIRATION_AGE / 2) +#ifdef ANDROID_P2P +int p2p_connection_in_progress(struct p2p_data *p2p) +{ + int ret = 0; + + switch (p2p->state) { + case P2P_CONNECT: + case P2P_CONNECT_LISTEN: + case P2P_GO_NEG: + case P2P_WAIT_PEER_CONNECT: + case P2P_WAIT_PEER_IDLE: + case P2P_PROVISIONING: + case P2P_INVITE: + case P2P_INVITE_LISTEN: + ret = 1; + break; + + default: + wpa_printf(MSG_DEBUG, "p2p_connection_in_progress state %d", p2p->state); + ret = 0; + } + + return ret; +} +#endif + static void p2p_expire_peers(struct p2p_data *p2p) { struct p2p_device *dev, *n; @@ -82,7 +112,14 @@ static void p2p_expire_peers(struct p2p_data *p2p) continue; } - wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Expiring old peer " +#ifdef ANDROID_P2P + /* If Connection is in progress, don't expire the peer + */ + if (p2p_connection_in_progress(p2p)) + continue; +#endif + + wpa_msg(p2p->cfg->msg_ctx, MSG_ERROR, "P2P: Expiring old peer " "entry " MACSTR, MAC2STR(dev->info.p2p_device_addr)); dl_list_del(&dev->list); p2p_device_free(p2p, dev);