mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-24 16:23:40 +01:00
87 lines
2.3 KiB
Erlang
87 lines
2.3 KiB
Erlang
%%%----------------------------------------------------------------------
|
|
%%%
|
|
%%% ejabberd, Copyright (C) 2002-2011 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
|
|
%%%
|
|
%%%----------------------------------------------------------------------
|
|
|
|
-define(MAX_USERS_DEFAULT, 200).
|
|
|
|
-define(SETS, gb_sets).
|
|
-define(DICT, dict).
|
|
|
|
-record(lqueue, {queue, len, max}).
|
|
|
|
-record(config, {title = "",
|
|
description = "",
|
|
allow_change_subj = true,
|
|
allow_query_users = true,
|
|
allow_private_messages = true,
|
|
allow_private_messages_from_visitors = anyone,
|
|
allow_visitor_status = true,
|
|
allow_visitor_nickchange = true,
|
|
public = true,
|
|
public_list = true,
|
|
persistent = false,
|
|
moderated = true,
|
|
captcha_protected = false,
|
|
members_by_default = true,
|
|
members_only = false,
|
|
allow_user_invites = false,
|
|
password_protected = false,
|
|
password = "",
|
|
anonymous = true,
|
|
max_users = ?MAX_USERS_DEFAULT,
|
|
logging = false
|
|
}).
|
|
|
|
-record(user, {jid,
|
|
nick,
|
|
role,
|
|
last_presence}).
|
|
|
|
-record(activity, {message_time = 0,
|
|
presence_time = 0,
|
|
message_shaper,
|
|
presence_shaper,
|
|
message,
|
|
presence}).
|
|
|
|
-record(state, {room, % binary()
|
|
host, % binary()
|
|
server_host, % string()
|
|
access,
|
|
jid, % jid()
|
|
config = #config{},
|
|
users = ?DICT:new(),
|
|
robots = ?DICT:new(),
|
|
affiliations = ?DICT:new(),
|
|
history,
|
|
subject = "",
|
|
subject_author = "",
|
|
just_created = false,
|
|
activity = treap:empty(),
|
|
room_shaper,
|
|
room_queue = queue:new()}).
|
|
|
|
-record(muc_online_users, {us,
|
|
room,
|
|
host}).
|
|
|
|
%% Copied from mod_muc.erl
|
|
-record(muc_room_opt, {name_host, opt, val}).
|