Skip to content

Commit

Permalink
version bump.
Browse files Browse the repository at this point in the history
  • Loading branch information
NTDLS committed Nov 4, 2024
1 parent 6d9a127 commit 2ffd4b1
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion @Installers/Installer.Iss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#define AppVersion "4.2.1"
#define AppVersion "4.2.2"

[Setup]
;-- Main Setup Information
Expand Down
2 changes: 1 addition & 1 deletion NetTunnel.Library/NetTunnel.Library.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<Company>NetworkDLS</Company>
<Authors>NetworkDLS</Authors>
<Copyright>Copyright © 2024 NetworkDLS</Copyright>
<Version>4.2.1</Version>
<Version>4.2.2</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion NetTunnel.Service/NetTunnel.Service.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<Company>NetworkDLS</Company>
<Authors>NetworkDLS</Authors>
<Copyright>Copyright © 2024 NetworkDLS</Copyright>
<Version>4.2.1</Version>
<Version>4.2.2</Version>
<OutputType>Exe</OutputType>
</PropertyGroup>

Expand Down
6 changes: 3 additions & 3 deletions NetTunnel.Service/TunnelEngine/Endpoints/BaseEndpoint.cs
Original file line number Diff line number Diff line change
Expand Up @@ -179,10 +179,10 @@ this is EndpointOutbound && Configuration.HttpHeaderRules
{
switch (HttpUtility.Process(ref httpHeaderBuilder, Configuration, buffer))
{
case HttpUtility.HTTPHeaderResult.WaitOnData:
case NtHTTPHeaderResult.WaitOnData:
//We received a partial HTTP header, wait on more data.
continue;
case HttpUtility.HTTPHeaderResult.Present:
case NtHTTPHeaderResult.Present:
//Found an HTTP header, send it to the peer. There may be bytes remaining
// in the buffer if buffer.Length > 0 so follow though to WriteBytesToPeer.

Expand All @@ -193,7 +193,7 @@ this is EndpointOutbound && Configuration.HttpHeaderRules

httpHeaderBuilder.Clear();
break;
case HttpUtility.HTTPHeaderResult.NotPresent:
case NtHTTPHeaderResult.NotPresent:
//Didn't find an HTTP header.
break;
}
Expand Down
2 changes: 1 addition & 1 deletion NetTunnel.UI/NetTunnel.UI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<Company>NetworkDLS</Company>
<Authors>NetworkDLS</Authors>
<Copyright>Copyright © 2024 NetworkDLS</Copyright>
<Version>4.2.1</Version>
<Version>4.2.2</Version>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 2ffd4b1

Please sign in to comment.