aboutsummaryrefslogtreecommitdiff
path: root/src/mod_offline.erl
diff options
context:
space:
mode:
authorAlexey Shchepin <alexey@process-one.net>2003-01-29 17:12:23 +0000
committerAlexey Shchepin <alexey@process-one.net>2003-01-29 17:12:23 +0000
commit9a3a723f1b0cbabf1017f27fafe7a5f0fd4a0eef (patch)
tree00e57c2b15ecf6f84fe99de7f983f5d5ec3c193c /src/mod_offline.erl
parent*** empty log message *** (diff)
*** empty log message ***
SVN Revision: 53
Diffstat (limited to '')
-rw-r--r--src/mod_offline.erl4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mod_offline.erl b/src/mod_offline.erl
index b5e84cad0..63391cfc4 100644
--- a/src/mod_offline.erl
+++ b/src/mod_offline.erl
@@ -12,6 +12,7 @@
-behaviour(gen_mod).
-export([start/1,
+ stop/0,
store_packet/3,
resend_offline_messages/1,
remove_user/1]).
@@ -27,6 +28,9 @@ start(_) ->
{type, bag},
{attributes, record_info(fields, offline_msg)}]).
+stop() ->
+ % TODO: maybe throw error that this module can't be removed?
+ ok.
store_packet(From, To, Packet) ->
case check_event(From, To, Packet) of