Back to project page android_network_discovery.
The source code is released under:
GNU General Public License
If you think the Android project android_network_discovery 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 info.lamatricexiste.network; /*from w w w . j ava 2s . c o m*/ import android.text.format.Time; public class portscan { String scan_UUID; String ip_Address; String mac_address; String ports; Time now = new Time(); public portscan(String mac, String ip, String services, String netuuid) { now.setToNow(); scan_UUID = netuuid; ip_Address = ip; mac_address = mac; ports = services; } }