2007-11-09 11:18:38 +01:00
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
%%% File : ejabberd_config.hrl
|
|
|
|
%%% Author : Mickael Remond <mickael.remond@process-one.net>
|
|
|
|
%%% Purpose : ejabberd configuration internal data structures.
|
|
|
|
%%% Created : 5 Nov 2007 by Mickael Remond <mickael.remond@process-one.net>
|
2007-11-15 11:33:18 +01:00
|
|
|
%%% Id : $Id$
|
2007-11-09 11:18:38 +01:00
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
|
|
|
|
-record(config, {key, value}).
|
|
|
|
-record(local_config, {key, value}).
|
|
|
|
-record(state, {opts = [],
|
|
|
|
hosts = [],
|
|
|
|
override_local = false,
|
|
|
|
override_global = false,
|
|
|
|
override_acls = false}).
|