Back to project page OpenWlanMapNlpBackend.
The source code is released under:
GNU General Public License
If you think the Android project OpenWlanMapNlpBackend listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.vwp.libwlocate; /* ww w .j ava 2 s. co m*/ /** * Internal class, used for storing request data */ public class wloc_req { public static final int WLOC_MAX_NETWORKS=16; public byte version,length; public byte[][] bssids=new byte[WLOC_MAX_NETWORKS][6]; public byte[] signal=new byte[WLOC_MAX_NETWORKS]; public int cgiIP; wloc_req() { version=1; length=118; cgiIP=0; } }