diff options
author | Irfan Sheriff <isheriff@google.com> | 2012-09-18 12:22:06 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2012-09-18 12:22:06 -0700 |
commit | 24ed2769130a8f9df44e7fc22be52b6282e724c3 (patch) | |
tree | 6fec39a51a0f49f5bfe503b5d60afdf75c7e3ca2 /wifi | |
parent | 00bc4c0b6723bda12e846f9f1f729acb79a389a1 (diff) | |
parent | e0c28d5f1358fc2d4c464f910bd04fed4b283fef (diff) | |
download | frameworks_base-24ed2769130a8f9df44e7fc22be52b6282e724c3.zip frameworks_base-24ed2769130a8f9df44e7fc22be52b6282e724c3.tar.gz frameworks_base-24ed2769130a8f9df44e7fc22be52b6282e724c3.tar.bz2 |
Merge "WFD fixes" into jb-mr1-dev
Diffstat (limited to 'wifi')
-rw-r--r-- | wifi/java/android/net/wifi/p2p/WifiP2pConfig.java | 3 | ||||
-rw-r--r-- | wifi/java/android/net/wifi/p2p/WifiP2pService.java | 9 |
2 files changed, 6 insertions, 6 deletions
diff --git a/wifi/java/android/net/wifi/p2p/WifiP2pConfig.java b/wifi/java/android/net/wifi/p2p/WifiP2pConfig.java index 100e062..f4440c8 100644 --- a/wifi/java/android/net/wifi/p2p/WifiP2pConfig.java +++ b/wifi/java/android/net/wifi/p2p/WifiP2pConfig.java @@ -37,6 +37,9 @@ public class WifiP2pConfig implements Parcelable { */ public WpsInfo wps; + /** @hide */ + public static final int MAX_GROUP_OWNER_INTENT = 15; + /** * This is an integer value between 0 and 15 where 0 indicates the least * inclination to be a group owner and 15 indicates the highest inclination diff --git a/wifi/java/android/net/wifi/p2p/WifiP2pService.java b/wifi/java/android/net/wifi/p2p/WifiP2pService.java index 35dd764..dfe1297 100644 --- a/wifi/java/android/net/wifi/p2p/WifiP2pService.java +++ b/wifi/java/android/net/wifi/p2p/WifiP2pService.java @@ -135,7 +135,7 @@ public class WifiP2pService extends IWifiP2pManager.Stub { private static final int DISCOVER_TIMEOUT_S = 120; /* Idle time after a peer is gone when the group is torn down */ - private static final int GROUP_IDLE_TIME_S = 5; + private static final int GROUP_IDLE_TIME_S = 20; private static final int BASE = Protocol.BASE_WIFI_P2P_SERVICE; @@ -1212,13 +1212,10 @@ public class WifiP2pService extends IWifiP2pManager.Stub { mGroup.getNetworkName())); } + mWifiNative.setP2pGroupIdle(mGroup.getInterface(), GROUP_IDLE_TIME_S); if (mGroup.isGroupOwner()) { startDhcpServer(mGroup.getInterface()); } else { - // Set group idle only for a client on the group interface to speed up - // disconnect when GO is gone. Setting group idle time for a group owner - // causes connectivity issues for new clients - mWifiNative.setP2pGroupIdle(mGroup.getInterface(), GROUP_IDLE_TIME_S); mDhcpStateMachine = DhcpStateMachine.makeDhcpStateMachine(mContext, P2pStateMachine.this, mGroup.getInterface()); mDhcpStateMachine.sendMessage(DhcpStateMachine.CMD_START_DHCP); @@ -1283,7 +1280,6 @@ public class WifiP2pService extends IWifiP2pManager.Stub { //DHCP server has already been started if I am a group owner if (mGroup.isGroupOwner()) { setWifiP2pInfoOnGroupFormation(SERVER_ADDRESS); - sendP2pConnectionChangedBroadcast(); } } @@ -1306,6 +1302,7 @@ public class WifiP2pService extends IWifiP2pManager.Stub { } else { loge("Connect on null device address, ignore"); } + sendP2pConnectionChangedBroadcast(); break; case WifiMonitor.AP_STA_DISCONNECTED_EVENT: device = (WifiP2pDevice) message.obj; |