-> IPScanner added

-> PortScanner added
This commit is contained in:
Kevin Krüger
2022-01-17 15:17:34 +01:00
parent 1dc3d93edf
commit bb6c229875
57 changed files with 9227 additions and 26 deletions

View File

@@ -0,0 +1,29 @@
using System;
using System.Collections.Generic;
using System.Text;
using System.Net;
namespace IPScanner
{
public class IPScanResult
{
public IPAddress ip;
public int ping = -1;
public string host;
public ScanStatus status = ScanStatus.Initializing;
public string identification = "...";
public HttpResponseData response;
public IPScanResult(IPAddress ip)
{
this.ip = ip;
}
//public IPScanResult(IPAddress ip, int ping, string host)
//{
// this.ip = ip;
// this.ping = ping;
// this.host = host;
// this.status = ScanStatus.Complete;
//}
}
}