24
1
mirror of https://github.com/processone/ejabberd.git synced 2024-06-30 23:02:00 +02:00
xmpp.chapril.org-ejabberd/include/ejabberd_http.hrl

56 lines
2.5 KiB
Erlang
Raw Normal View History

2004-03-04 21:56:32 +01:00
%%%----------------------------------------------------------------------
%%%
2013-03-27 10:36:48 +01:00
%%% ejabberd, Copyright (C) 2002-2013 ProcessOne
%%%
%%% This program is free software; you can redistribute it and/or
%%% modify it under the terms of the GNU General Public License as
%%% published by the Free Software Foundation; either version 2 of the
%%% License, or (at your option) any later version.
%%%
%%% This program is distributed in the hope that it will be useful,
%%% but WITHOUT ANY WARRANTY; without even the implied warranty of
%%% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
%%% General Public License for more details.
%%%
%%% You should have received a copy of the GNU General Public License
%%% along with this program; if not, write to the Free Software
%%% Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
%%% 02111-1307 USA
%%%
2004-03-04 21:56:32 +01:00
%%%----------------------------------------------------------------------
2012-09-11 15:45:59 +02:00
-record(request,
{method :: method(),
path = [] :: [binary()],
q = [] :: [{binary() | nokey, binary()}],
us = {<<>>, <<>>} :: {binary(), binary()},
auth :: {binary(), binary()} |
{auth_jid, {binary(), binary()}, jlib:jid()},
lang = <<"">> :: binary(),
data = <<"">> :: binary(),
ip :: {inet:ip_address(), inet:port_number()},
host = <<"">> :: binary(),
port = 5280 :: inet:port_number(),
tp = http :: protocol(),
headers = [] :: [{atom() | binary(), binary()}]}).
2012-09-11 15:45:59 +02:00
-record(ws,
{socket :: inet:socket() | tls:tls_socket(),
sockmod = gen_tcp :: gen_tcp | tls,
ws_autoexit = false :: boolean(),
ip :: {inet:ip_address(), inet:port_number()},
vsn :: vsn(),
origin = <<"">> :: binary(),
host = <<"">> :: binary(),
port = 5280 :: inet:port_number(),
path = [] :: [binary()],
headers = [] :: [{atom() | binary(), binary()}],
local_path = [] :: [binary()],
2012-09-14 18:29:16 +02:00
q = [] :: [{binary() | nokey, binary()}],
buf :: binary()}).
2012-09-11 15:45:59 +02:00
-type method() :: 'GET' | 'HEAD' | 'DELETE' | 'OPTIONS' | 'PUT' | 'POST' | 'TRACE'.
-type protocol() :: http | https.
-type http_request() :: #request{}.
-type vsn() :: {'draft-hybi' | 'draft-hixie', non_neg_integer()}.