Skip to content

Commit 3d3c624

Browse files
committed
TEMP
1 parent d2e013f commit 3d3c624

63 files changed

Lines changed: 2233 additions & 254 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

src/TurboHTTP.API.Tests/verify/CoreAPISpec.ApproveCore.received.txt

Lines changed: 443 additions & 0 deletions
Large diffs are not rendered by default.

src/TurboHTTP.MicroBenchmarks/Http10/Http10DecoderBenchmark.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
using BenchmarkDotNet.Attributes;
22
using TurboHTTP.MicroBenchmarks.Internal;
3+
using TurboHTTP.Protocol.Syntax;
34
using TurboHTTP.Protocol.Syntax.Http10;
5+
using TurboHTTP.Protocol.Syntax.Http10.Client;
46
using TurboHTTP.Protocol.Syntax.Http10.Options;
57

68
namespace TurboHTTP.MicroBenchmarks.Http10;

src/TurboHTTP.MicroBenchmarks/Http10/Http10EncoderBenchmark.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
using BenchmarkDotNet.Attributes;
22
using TurboHTTP.MicroBenchmarks.Internal;
33
using TurboHTTP.Protocol.Syntax.Http10;
4+
using TurboHTTP.Protocol.Syntax.Http10.Client;
45
using TurboHTTP.Protocol.Syntax.Http10.Options;
56

67
namespace TurboHTTP.MicroBenchmarks.Http10;

src/TurboHTTP.Server/Streams/Stages/Http10ConnectionStage.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
using Akka.Streams.Stage;
33
using Servus.Akka.Transport;
44
using TurboHTTP.Protocol.Syntax.Http10;
5+
using TurboHTTP.Protocol.Syntax.Http10.Server;
56

67
namespace TurboHTTP.Server.Streams.Stages;
78

src/TurboHTTP.Tests/Http10/HeaderRouterSpec.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
using TurboHTTP.Protocol.Semantics;
2+
using TurboHTTP.Protocol.Syntax;
23
using TurboHTTP.Protocol.Syntax.Http10;
34

45
namespace TurboHTTP.Tests.Http10.V2;

src/TurboHTTP.Tests/Http10/Http10ClientDecoderSpec.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
using System.Net;
22
using TurboHTTP.Protocol.Syntax;
33
using TurboHTTP.Protocol.Syntax.Http10;
4+
using TurboHTTP.Protocol.Syntax.Http10.Client;
45
using TurboHTTP.Protocol.Syntax.Http10.Options;
56

67
namespace TurboHTTP.Tests.Http10;

src/TurboHTTP.Tests/Http10/Http10ClientEncoderSpec.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using System.Text;
22
using TurboHTTP.Protocol.Syntax.Http10;
3+
using TurboHTTP.Protocol.Syntax.Http10.Client;
34
using TurboHTTP.Protocol.Syntax.Http10.Options;
45

56
namespace TurboHTTP.Tests.Http10;

src/TurboHTTP.Tests/Http10/Http10ClientStateMachineSpec.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
using System.Net;
22
using Servus.Akka.Transport;
33
using TurboHTTP.Protocol.Syntax.Http10;
4+
using TurboHTTP.Protocol.Syntax.Http10.Client;
45
using TurboHTTP.Tests.Shared;
56

67
namespace TurboHTTP.Tests.Http10;

src/TurboHTTP.Tests/Http10/Http10ServerDecoderSpec.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
using System.Text;
2+
using TurboHTTP.Protocol.Syntax;
23
using TurboHTTP.Protocol.Syntax.Http10;
34
using TurboHTTP.Protocol.Syntax.Http10.Options;
5+
using TurboHTTP.Protocol.Syntax.Http10.Server;
46

57
namespace TurboHTTP.Tests.Http10;
68

src/TurboHTTP.Tests/Http10/Http10ServerEncoderSpec.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
using System.Text;
33
using TurboHTTP.Protocol.Syntax.Http10;
44
using TurboHTTP.Protocol.Syntax.Http10.Options;
5+
using TurboHTTP.Protocol.Syntax.Http10.Server;
56

67
namespace TurboHTTP.Tests.Http10;
78

0 commit comments

Comments
 (0)