Fixed: NETWORK_RESILIENCE_COMPLETE

This commit is contained in:
2025-08-26 08:34:19 +00:00
parent 7336b4c257
commit b2b9c179c2
46 changed files with 6364 additions and 101 deletions

12
ejabberd-module/jid.erl Normal file
View File

@ -0,0 +1,12 @@
%%%----------------------------------------------------------------------
%%% Mock jid module for compilation testing
%%%----------------------------------------------------------------------
-module(jid).
-export([user/1, server/1]).
user({jid, User, _Server, _Resource}) -> User;
user(_) -> <<"mockuser">>.
server({jid, _User, Server, _Resource}) -> Server;
server(_) -> <<"mockserver">>.