Skip to content

Commit 49007dc

Browse files
committed
fix
1 parent 0f55ca5 commit 49007dc

3 files changed

Lines changed: 14 additions & 2 deletions

File tree

src/NosCore.Networking/IRequestDelimiter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
namespace NosCore.Networking;
88

9-
public interface IRequestDelimiter
9+
public interface IPipelineConfiguration
1010
{
1111
public byte? Delimiter { get; set; }
1212
}

src/NosCore.Networking/NosCore.Networking.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<RepositoryUrl>https://github.com/NosCoreIO/NosCore.Networking.git</RepositoryUrl>
1313
<PackageIconUrl></PackageIconUrl>
1414
<PackageTags>nostale, noscore, nostale private server source, nostale emulator</PackageTags>
15-
<Version>4.0.3</Version>
15+
<Version>4.0.4</Version>
1616
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
1717
<Description>NosCore Networking</Description>
1818
<PackageLicenseExpression>MIT</PackageLicenseExpression>
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
// __ _ __ __ ___ __ ___ ___
2+
// | \| |/__\ /' _/ / _//__\| _ \ __|
3+
// | | ' | \/ |`._`.| \_| \/ | v / _|
4+
// |_|\__|\__/ |___/ \__/\__/|_|_\___|
5+
// -----------------------------------
6+
7+
namespace NosCore.Networking;
8+
9+
public class PipelineConfiguration : IPipelineConfiguration
10+
{
11+
public byte? Delimiter { get; set; }
12+
}

0 commit comments

Comments
 (0)