mirror of
https://github.com/processone/ejabberd
synced 2025-10-03 09:49:18 +02:00
8 lines
251 B
Erlang
8 lines
251 B
Erlang
-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 | '_'}).
|