From 02d825e003c9b9013406f67ba7f9dba5dd241b18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Mon, 18 Apr 2011 00:25:04 +0200 Subject: Move HTTP types definitions to include/http.hrl (for now). --- include/http.hrl | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'include/http.hrl') diff --git a/include/http.hrl b/include/http.hrl index fe5c796..6e46d5f 100644 --- a/include/http.hrl +++ b/include/http.hrl @@ -12,6 +12,30 @@ %% ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF %% OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +-type http_method() :: 'OPTIONS' | 'GET' | 'HEAD' + | 'POST' | 'PUT' | 'DELETE' | 'TRACE' | string(). +-type http_uri() :: '*' | {absoluteURI, http | https, Host::string(), + Port::integer() | undefined, Path::string()} + | {scheme, Scheme::string(), string()} + | {abs_path, string()} | string(). +-type http_version() :: {Major::integer(), Minor::integer()}. +-type http_header() :: 'Cache-Control' | 'Connection' | 'Date' | 'Pragma' + | 'Transfer-Encoding' | 'Upgrade' | 'Via' | 'Accept' | 'Accept-Charset' + | 'Accept-Encoding' | 'Accept-Language' | 'Authorization' | 'From' | 'Host' + | 'If-Modified-Since' | 'If-Match' | 'If-None-Match' | 'If-Range' + | 'If-Unmodified-Since' | 'Max-Forwards' | 'Proxy-Authorization' | 'Range' + | 'Referer' | 'User-Agent' | 'Age' | 'Location' | 'Proxy-Authenticate' + | 'Public' | 'Retry-After' | 'Server' | 'Vary' | 'Warning' + | 'Www-Authenticate' | 'Allow' | 'Content-Base' | 'Content-Encoding' + | 'Content-Language' | 'Content-Length' | 'Content-Location' + | 'Content-Md5' | 'Content-Range' | 'Content-Type' | 'Etag' + | 'Expires' | 'Last-Modified' | 'Accept-Ranges' | 'Set-Cookie' + | 'Set-Cookie2' | 'X-Forwarded-For' | 'Cookie' | 'Keep-Alive' + | 'Proxy-Connection' | string(). +-type http_headers() :: list({http_header(), string()}). +%% -type http_cookies() :: term(). %% @todo +-type http_status() :: non_neg_integer() | string(). + -record(http_req, { %% Transport. socket = undefined :: undefined | inet:socket(), -- cgit v1.2.3