mirror of
https://github.com/processone/ejabberd
synced 2025-10-03 09:49:18 +02:00
11 lines
264 B
Erlang
11 lines
264 B
Erlang
%% @efmt:off
|
|
%% @indent-begin
|
|
|
|
-define(ROUTES_CACHE, routes_cache).
|
|
|
|
-type local_hint() :: integer() | {apply, atom(), atom()}.
|
|
|
|
-record(route, {domain :: binary(),
|
|
server_host :: binary(),
|
|
pid :: undefined | pid(),
|
|
local_hint :: local_hint() | undefined}).
|