Skip to content

Commit 3255fd7

Browse files
committed
Update to latest async
1 parent 82f49ee commit 3255fd7

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

async/Async_OpenFlow.mli

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ module Platform : sig
8080
val set_kill_wait : t -> Time.Span.t -> unit
8181
end
8282

83-
module Make(Message : Message) : S
83+
module Make(Message : Message) () : S
8484
with type m = Message.t
8585
and type c = unit
8686

async/Async_OpenFlowChunk.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ end
2424
module Controller = struct
2525
open Async.Std
2626

27-
module Platform = Platform.Make(Message)
27+
module Platform = Platform.Make(Message) ()
2828
module Client_id = struct
2929
module T = struct
3030
type t = Platform.Client_id.t with sexp

async/Async_OpenFlow_Platform.ml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ type ('id, 'a, 'b) event = [
1414

1515
module type S = sig
1616

17-
type t
17+
type t
1818

1919
type c
2020
type m
@@ -39,7 +39,7 @@ module type S = sig
3939

4040
val has_client_id : t -> Client_id.t -> bool
4141

42-
val send
42+
val send
4343
: t
4444
-> Client_id.t
4545
-> m
@@ -49,8 +49,8 @@ module type S = sig
4949

5050
val send_to_all : t -> m -> unit
5151

52-
val client_addr_port
53-
: t
52+
val client_addr_port
53+
: t
5454
-> Client_id.t
5555
-> (Unix.Inet_addr.t * int) option
5656

@@ -66,7 +66,7 @@ module type CTL = sig
6666
val set_kill_wait : t -> Time.Span.t -> unit
6767
end
6868

69-
module Make(Message : Message) = struct
69+
module Make(Message : Message) () = struct
7070

7171
type m = Message.t
7272

@@ -99,8 +99,8 @@ module Make(Message : Message) = struct
9999
let write ((_, w) : t) (m : m) : unit = Serialization.serialize w m
100100

101101
end
102-
103-
end)
102+
103+
end) ()
104104

105105
type t = Impl.t
106106
type c = unit

opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ depends: [
2020
"cstruct" {>= "1.0.1"}
2121
"packet" {>= "0.3.1" }
2222
"sexplib"
23-
"async" {>= "112.06.00" }
23+
"async" {>= "112.17.00" }
2424
"quickcheck"
2525
"ounit" {test}
2626
"pa_ounit" {test}

0 commit comments

Comments
 (0)