Skip to content

Commit c98b2dc

Browse files
committed
More cleanup and get more tests passing; port all the multipart parsing over to new package
1 parent a1a9518 commit c98b2dc

18 files changed

+1005
-966
lines changed

Project.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ Sockets = "1.11.0"
2222
julia = "1.9"
2323

2424
[extras]
25+
JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
2526
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
2627

2728
[targets]
28-
test = ["Test"]
29+
test = ["JSON", "Test"]

src/HTTP.jl

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,18 @@ using LibAwsCommon, LibAwsIO, LibAwsHTTP
66
export WebSockets
77

88
include("utils.jl")
9-
10-
include("forms.jl"); using .Forms
9+
include("access_log.jl")
10+
include("Sniff.jl"); using .Sniff
11+
include("Forms.jl"); using .Forms
1112
include("requestresponse.jl")
1213
include("cookies.jl"); using .Cookies
13-
include("redirects.jl")
14-
include("client.jl")
15-
include("retry.jl")
16-
include("connection.jl")
17-
include("request.jl")
18-
include("stream.jl")
19-
include("makerequest.jl")
14+
include("client/redirects.jl")
15+
include("client/client.jl")
16+
include("client/retry.jl")
17+
include("client/connection.jl")
18+
include("client/request.jl")
19+
include("client/stream.jl")
20+
include("client/makerequest.jl")
2021
include("websockets.jl"); using .WebSockets
2122
include("server.jl")
2223
include("handlers.jl")

0 commit comments

Comments
 (0)