From 6d2c80e3a16ecf85d74df76005ab68136457e111 Mon Sep 17 00:00:00 2001 From: Antonio Nuno Monteiro Date: Tue, 23 Apr 2019 23:15:31 +0100 Subject: [PATCH] Fix examples after rebase --- examples/lwt/lwt_https_get.ml | 2 +- examples/lwt/lwt_https_server.ml | 2 +- httpaf-lwt-unix.opam | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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 "