From 314483a0b6609873f5c215d24e662016374128ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Mon, 23 Jan 2012 09:23:58 +0100 Subject: Rename the type http_uri/0 to cowboy_http:uri/0 --- src/cowboy_http.erl | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/cowboy_http.erl') diff --git a/src/cowboy_http.erl b/src/cowboy_http.erl index 2f29375..4891d72 100644 --- a/src/cowboy_http.erl +++ b/src/cowboy_http.erl @@ -28,8 +28,12 @@ -type method() :: 'OPTIONS' | 'GET' | 'HEAD' | 'POST' | 'PUT' | 'DELETE' | 'TRACE' | binary(). +-type uri() :: '*' | {absoluteURI, http | https, Host::binary(), + Port::integer() | undefined, Path::binary()} + | {scheme, Scheme::binary(), binary()} + | {abs_path, binary()} | binary(). --export_type([method/0]). +-export_type([method/0, uri/0]). -include("include/http.hrl"). -include_lib("eunit/include/eunit.hrl"). -- cgit v1.2.3