mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_smacks: Add type field to results so actions can be later distinguished
This commit is contained in:
parent
5eef82fdcf
commit
a061b11f32
1 changed files with 2 additions and 1 deletions
|
@ -329,6 +329,7 @@ function do_enable(session, stanza)
|
||||||
end
|
end
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
type = "enabled";
|
||||||
id = resume_token;
|
id = resume_token;
|
||||||
resume_max = resume_token and tostring(resume_timeout) or nil;
|
resume_max = resume_token and tostring(resume_timeout) or nil;
|
||||||
session = session;
|
session = session;
|
||||||
|
@ -337,7 +338,6 @@ function do_enable(session, stanza)
|
||||||
|
|
||||||
track_session(session, resume_token);
|
track_session(session, resume_token);
|
||||||
wrap_session(session, false);
|
wrap_session(session, false);
|
||||||
|
|
||||||
end;
|
end;
|
||||||
};
|
};
|
||||||
end
|
end
|
||||||
|
@ -613,6 +613,7 @@ function do_resume(session, stanza)
|
||||||
sessionmanager.update_session(original_session, session);
|
sessionmanager.update_session(original_session, session);
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
type = "resumed";
|
||||||
session = original_session;
|
session = original_session;
|
||||||
id = id;
|
id = id;
|
||||||
-- Return function to complete the resumption and resync unacked stanzas
|
-- Return function to complete the resumption and resync unacked stanzas
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue