-> PortScanner added
This commit is contained in:
12
Networking/PortScanner/IScannerManagerSingleton.cs
Normal file
12
Networking/PortScanner/IScannerManagerSingleton.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using Networking.Pages;
|
||||
using System.Threading;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace PortScanner
|
||||
{
|
||||
internal interface IScannerManagerSingleton
|
||||
{
|
||||
void ExecuteOnceAsync(string hostname, int port, int timeout, ScannerManagerSingleton.ScanMode scanMode, WF_PortScanner.ExecuteOnceAsyncCallback callback, CancellationToken ct);
|
||||
void ExecuteRangeAsync(string hostname, int portMin, int portMax, int timeout, ScannerManagerSingleton.ScanMode scanMode, ProgressBar progress, WF_PortScanner.ExecuteOnceAsyncCallback callback, CancellationToken ct);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user