mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-30 16:36:29 +01:00
2e00142b38
SVN Revision: 799
18 lines
439 B
Erlang
18 lines
439 B
Erlang
%%%----------------------------------------------------------------------
|
|
%%% File : ejabberd_http.hrl
|
|
%%% Author : Alexey Shchepin <alexey@sevcom.net>
|
|
%%% Purpose :
|
|
%%% Created : 4 Mar 2004 by Alexey Shchepin <alexey@sevcom.net>
|
|
%%% Id : $Id$
|
|
%%%----------------------------------------------------------------------
|
|
|
|
-record(request, {method,
|
|
path,
|
|
q = [],
|
|
us,
|
|
auth,
|
|
lang = "",
|
|
data = "",
|
|
ip
|
|
}).
|