From d5f783c1597445adeb6c9f8848b604a6b2b1d1a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Lavergne?= Date: Tue, 8 Aug 2023 15:00:20 -0400 Subject: [PATCH] Comment re: NEXT_RELEASE Co-authored-by: Simon Cruanes --- src/Tiny_httpd_server.mli | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tiny_httpd_server.mli b/src/Tiny_httpd_server.mli index 69d4a524..fbe7a77f 100644 --- a/src/Tiny_httpd_server.mli +++ b/src/Tiny_httpd_server.mli @@ -67,7 +67,7 @@ module Request : sig meth: Meth.t; (** HTTP method for this request. *) host: string; (** Host header, mandatory. It can also be found in {!headers}. *) - client_addr : Unix.sockaddr option; (** Client address. *) + client_addr : Unix.sockaddr option; (** Client address. Available since NEXT_RELEASE. *) headers: Headers.t; (** List of headers. *) http_version: int * int; (** HTTP version. This should be either [1, 0] or [1, 1]. *)