-> 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

32
Networking/PluginInfo.cs Normal file
View File

@@ -0,0 +1,32 @@
using Networking.Pages;
using PTConverter.Plugin;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Networking
{
public class PluginInfo : IPlugin
{
public string Author => "Kevin Krüger";
public string Company => "";
public string PluginName => "Networking";
public string Description => "This Plugin provides Network features.";
public string Version => "1.0.0";
public string IconLink => null;
public IEnumerable<IPage> RegisterPages => new List<IPage>()
{
{new IPv4() },
{new PortScanner() },
{new Pages.IPScanner() }
};
}
}