summaryrefslogblamecommitdiff
path: root/include/ejabberd_sm.hrl
blob: bae60ccd374a98544cb26a3aaea897ca231ce34b (plain) (tree)
1
2
3
4
5
6
7
8
9
10


                               






                                                                  

       
-ifndef(EJABBERD_SM_HRL).
-define(EJABBERD_SM_HRL, true).

-record(session, {sid, usr, us, priority, info}).
-record(session_counter, {vhost, count}).
-type sid() :: {erlang:timestamp(), pid()}.
-type ip() :: {inet:ip_address(), inet:port_number()} | undefined.
-type info() :: [{conn, atom()} | {ip, ip()} | {node, atom()}
                 | {oor, boolean()} | {auth_module, atom()}].
-type prio() :: undefined | integer().

-endif.