24
1
mirror of https://github.com/processone/ejabberd.git synced 2024-06-02 21:17:12 +02:00
xmpp.chapril.org-ejabberd/include/ejabberd_router.hrl

9 lines
251 B
Erlang
Raw Normal View History

-define(ROUTES_CACHE, routes_cache).
2017-02-18 07:36:27 +01:00
-type local_hint() :: integer() | {apply, atom(), atom()}.
2017-02-18 07:36:27 +01:00
-record(route, {domain :: binary() | '_',
server_host :: binary() | '_',
pid :: undefined | pid(),
2017-02-18 07:36:27 +01:00
local_hint :: local_hint() | undefined | '_'}).