Skip to content

Commit e5a66f1

Browse files
authored
Merge pull request #1003 from mseri/cohttp6-usability
cohttp: move new client and server modules into a generic module
2 parents 6a5f05c + 59af795 commit e5a66f1

File tree

9 files changed

+14
-10
lines changed

9 files changed

+14
-10
lines changed

CHANGES.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
## v6.0.0~beta1 (2023-10-27)
2+
- cohttp-eio: move new Cohttp.{Client,Server} modules under Cohttp.Generic (mseri #1003)
23
- cohttp-eio: Add Client.make_generic and HTTPS support. (talex5 #1002)
34
- cohttp: move generic client and server signatures to cohttp and use them across all packges. (mefyl #984)
45
- cohttp-eio: Complete rewrite to follow common interfaces and behaviors. (mefyl #984)

cohttp-eio/src/client.ml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ type connection = Eio.Flow.two_way_ty r
66
type t = sw:Switch.t -> Uri.t -> connection
77

88
include
9-
Cohttp.Client.Make
9+
Cohttp.Generic.Client.Make
1010
(struct
1111
type 'a io = 'a
1212
type body = Body.t

cohttp-eio/src/client.mli

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ open Eio.Std
33
type t
44

55
include
6-
Cohttp.Client.S
6+
Cohttp.Generic.Client.S
77
with type 'a with_context = t -> sw:Switch.t -> 'a
88
and type 'a io = 'a
99
and type body = Body.t

cohttp-eio/src/server.mli

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
include Cohttp.Server.S with module IO = Io.IO and type body = Body.t
1+
include Cohttp.Generic.Server.S with module IO = Io.IO and type body = Body.t
22

33
val run :
44
?max_connections:int ->

cohttp-lwt.opam

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ depends: [
2929
"ocaml" {>= "4.08"}
3030
"http" {= version}
3131
"cohttp" {= version}
32-
"lwt" {>= "2.5.0"}
32+
"lwt" {>= "5.4.0"}
3333
"sexplib0"
3434
"ppx_sexp_conv" {>= "v0.13.0"}
3535
"logs"

cohttp-lwt/src/client.ml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ module Make (Connection : S.Connection) = struct
1717
| Some ctx -> No_cache.(call (create ~ctx ()))
1818

1919
include
20-
Cohttp.Client.Make
20+
Cohttp.Generic.Client.Make
2121
(struct
2222
type 'a io = 'a Lwt.t
2323
type body = Body.t

cohttp-lwt/src/s.ml

+2-2
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ module type Client = sig
196196
interface rather than invoke this function directly. See {!head}, {!get}
197197
and {!post} for some examples. *)
198198
include
199-
Cohttp.Client.S
199+
Cohttp.Generic.Client.S
200200
with type 'a io = 'a Lwt.t
201201
and type body = Body.t
202202
and type 'a with_context = ?ctx:ctx -> 'a
@@ -223,7 +223,7 @@ end
223223

224224
(** The [Server] module implements a pipelined HTTP/1.1 server. *)
225225
module type Server = sig
226-
include Cohttp.Server.S with type body = Body.t and type 'a IO.t = 'a Lwt.t
226+
include Cohttp.Generic.Server.S with type body = Body.t and type 'a IO.t = 'a Lwt.t
227227

228228
val resolve_local_file : docroot:string -> uri:Uri.t -> string
229229
[@@deprecated "Please use Cohttp.Path.resolve_local_file. "]

cohttp/src/cohttp.ml

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
module Accept = Accept
22
module Auth = Auth
33
module Body = Body
4-
module Client = Client
54
module Conf = Conf
65
module Connection = Connection [@@deprecated "Connection.t values are useless."]
76
module Code = Code
@@ -11,10 +10,14 @@ module Link = Link
1110
module Request = Request
1211
module Response = Response
1312
module S = S
14-
module Server = Server
1513
module Path = Path
1614
module Transfer = Transfer
1715

16+
module Generic = struct
17+
module Client = Client
18+
module Server = Server
19+
end
20+
1821
module Private = struct
1922
module Transfer_io = Transfer_io
2023
module String_io = String_io

dune-project

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
(cohttp
7777
(= :version))
7878
(lwt
79-
(>= 2.5.0))
79+
(>= 5.4.0))
8080
sexplib0
8181
(ppx_sexp_conv
8282
(>= v0.13.0))

0 commit comments

Comments
 (0)