From: Badlop Date: Wed, 30 Jan 2008 16:07:59 +0000 (+0000) Subject: * src/mod_echo.erl: Put in comments the call to the educational X-Git-Tag: v2.0.0~26 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ae90a1671401050b77c64ab24054a76d01064f34;p=ejabberd * src/mod_echo.erl: Put in comments the call to the educational function do_client_version SVN Revision: 1166 --- diff --git a/ChangeLog b/ChangeLog index a9fe9b2fe..e26e9a35d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-01-30 Badlop + + * src/mod_echo.erl: Put in comments the call to the educational + function do_client_version + 2008-01-29 Badlop * src/mod_muc/mod_muc_room.erl: MUC kicks a participant if sends a diff --git a/src/mod_echo.erl b/src/mod_echo.erl index 3a4f0e38f..48d373ae4 100644 --- a/src/mod_echo.erl +++ b/src/mod_echo.erl @@ -121,7 +121,7 @@ handle_info({route, From, To, Packet}, State) -> "" -> jlib:make_error_reply(Packet, ?ERR_BAD_REQUEST); _ -> Packet end, - do_client_version(To, From), + %%do_client_version(To, From), ejabberd_router:route(To, From, Packet2), {noreply, State}; handle_info(_Info, State) -> @@ -146,9 +146,12 @@ code_change(_OldVsn, State, _Extra) -> {ok, State}. %%-------------------------------------------------------------------- -%%% Internal functions +%% Example of routing XMPP packets using Erlang's message passing %%-------------------------------------------------------------------- +%% To enable this educational example, uncomment the call to the +%% function do_client_version in handle_info. + %% ejabberd provides a method to receive XMPP packets using Erlang's %% message passing mechanism. %%