[RedirectorTester] Tested

This commit is contained in:
Connection Refused
2021-10-16 15:11:51 +08:00
parent bd413b0a2e
commit aa6f946b21
2 changed files with 5 additions and 5 deletions

View File

@@ -54,12 +54,12 @@ namespace RedirectorTester
public static void Main(string[] args)
{
aio_dial(NameList.AIO_FILTERLOOPBACK, "false");
aio_dial(NameList.AIO_FILTERINTRANET, "false");
aio_dial(NameList.AIO_FILTERPARENT, "false");
aio_dial(NameList.AIO_FILTERINTRANET, "true");
aio_dial(NameList.AIO_FILTERPARENT, "true");
aio_dial(NameList.AIO_FILTERICMP, "true");
aio_dial(NameList.AIO_FILTERTCP, "true");
aio_dial(NameList.AIO_FILTERUDP, "true");
aio_dial(NameList.AIO_FILTERDNS, "false");
aio_dial(NameList.AIO_FILTERDNS, "true");
aio_dial(NameList.AIO_ICMPING, "10");

View File

@@ -15,7 +15,7 @@
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x64\Debug\</OutputPath>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x64</PlatformTarget>
@@ -24,7 +24,7 @@
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
<OutputPath>bin\x64\Release\</OutputPath>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>