mirror of
https://github.com/AlexMacocian/MTSC.git
synced 2026-07-24 03:56:32 +00:00
set http request maximum size to max value
This commit is contained in:
+3
-3
@@ -5,12 +5,12 @@
|
||||
<TargetFrameworks>netcoreapp2.1;net48;netstandard2.0;netcoreapp3.0</TargetFrameworks>
|
||||
<ApplicationIcon />
|
||||
<StartupObject />
|
||||
<Version>2.4</Version>
|
||||
<Version>2.4.1</Version>
|
||||
<Authors>Alexandru-Victor Macocian</Authors>
|
||||
<Product>MTSC</Product>
|
||||
<Description>Modular TCP Server and Client</Description>
|
||||
<AssemblyVersion>0.2.4.0</AssemblyVersion>
|
||||
<FileVersion>0.2.4.0</FileVersion>
|
||||
<AssemblyVersion>0.2.4.1</AssemblyVersion>
|
||||
<FileVersion>0.2.4.1</FileVersion>
|
||||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
||||
<Platforms>AnyCPU;x64</Platforms>
|
||||
<PackageProjectUrl>https://github.com/AlexMacocian/MTSC</PackageProjectUrl>
|
||||
|
||||
@@ -22,7 +22,7 @@ namespace MTSC.ServerSide.Handlers
|
||||
Func<Server, HttpRequest, ClientData, RouteEnablerResponse>)>>();
|
||||
|
||||
public TimeSpan FragmentsExpirationTime { get; set; } = TimeSpan.FromSeconds(15);
|
||||
public double MaximumRequestSize { get; set; } = 15000;
|
||||
public double MaximumRequestSize { get; set; } = double.MaxValue;
|
||||
|
||||
public HttpRoutingHandler()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user