mirror of
https://github.com/amnezia-vpn/win-split-tunnel.git
synced 2026-05-17 00:06:00 +03:00
Merge branch 'filter-set-unsplit-continue-action'
This commit is contained in:
@@ -20,6 +20,9 @@ Line wrap the file at 100 chars. Th
|
||||
* **Security**: in case of vulnerabilities.
|
||||
|
||||
## [Unreleased]
|
||||
### Security
|
||||
- For non-excluded DNS traffic, evaluate all appropriate filters within the DNS sublayer when a soft
|
||||
permit has been applied in a higher-priority sublayer.
|
||||
|
||||
## [1.2.0.0] - 2022-01-10
|
||||
### Changed
|
||||
|
||||
@@ -380,10 +380,7 @@ CalloutClassifyBind
|
||||
return;
|
||||
}
|
||||
|
||||
if (ClassifyOut->actionType == FWP_ACTION_NONE)
|
||||
{
|
||||
ClassifyOut->actionType = FWP_ACTION_CONTINUE;
|
||||
}
|
||||
ClassificationReset(ClassifyOut);
|
||||
|
||||
if (!FWPS_IS_METADATA_FIELD_PRESENT(MetaValues, FWPS_METADATA_FIELD_PROCESS_ID))
|
||||
{
|
||||
@@ -727,10 +724,7 @@ CalloutClassifyConnect
|
||||
return;
|
||||
}
|
||||
|
||||
if (ClassifyOut->actionType == FWP_ACTION_NONE)
|
||||
{
|
||||
ClassifyOut->actionType = FWP_ACTION_CONTINUE;
|
||||
}
|
||||
ClassificationReset(ClassifyOut);
|
||||
|
||||
if (!FWPS_IS_METADATA_FIELD_PRESENT(MetaValues, FWPS_METADATA_FIELD_PROCESS_ID))
|
||||
{
|
||||
@@ -940,10 +934,7 @@ CalloutPermitSplitApps
|
||||
return;
|
||||
}
|
||||
|
||||
if (ClassifyOut->actionType == FWP_ACTION_NONE)
|
||||
{
|
||||
ClassifyOut->actionType = FWP_ACTION_CONTINUE;
|
||||
}
|
||||
ClassificationReset(ClassifyOut);
|
||||
|
||||
if (!FWPS_IS_METADATA_FIELD_PRESENT(MetaValues, FWPS_METADATA_FIELD_PROCESS_ID))
|
||||
{
|
||||
@@ -1093,10 +1084,7 @@ CalloutBlockSplitApps
|
||||
return;
|
||||
}
|
||||
|
||||
if (ClassifyOut->actionType == FWP_ACTION_NONE)
|
||||
{
|
||||
ClassifyOut->actionType = FWP_ACTION_CONTINUE;
|
||||
}
|
||||
ClassificationReset(ClassifyOut);
|
||||
|
||||
if (!FWPS_IS_METADATA_FIELD_PRESENT(MetaValues, FWPS_METADATA_FIELD_PROCESS_ID))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user