diff --git a/examples/lwt/lwt_https_get.ml b/examples/lwt/lwt_https_get.ml index 8aff3298..cbdbcfcd 100644 --- a/examples/lwt/lwt_https_get.ml +++ b/examples/lwt/lwt_https_get.ml @@ -3,7 +3,7 @@ open Lwt.Infix module Arg = Caml.Arg open Httpaf -open Httpaf_lwt +open Httpaf_lwt_unix let error_handler _ = assert false diff --git a/examples/lwt/lwt_https_server.ml b/examples/lwt/lwt_https_server.ml index b10cf1b7..51611016 100644 --- a/examples/lwt/lwt_https_server.ml +++ b/examples/lwt/lwt_https_server.ml @@ -2,7 +2,7 @@ open Base open Lwt.Infix module Arg = Caml.Arg -open Httpaf_lwt +open Httpaf_lwt_unix let request_handler (_ : Unix.sockaddr) = Httpaf_examples.Server.echo_post let error_handler (_ : Unix.sockaddr) = Httpaf_examples.Server.error_handler diff --git a/httpaf-lwt-unix.opam b/httpaf-lwt-unix.opam index 90574bdf..331446b5 100644 --- a/httpaf-lwt-unix.opam +++ b/httpaf-lwt-unix.opam @@ -1,5 +1,5 @@ opam-version: "2.0" -name: "httpaf-lwt" +name: "httpaf-lwt-unix" maintainer: "Spiros Eliopoulos " authors: [ "Anton Bachin "