mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
Merge with 0.6
This commit is contained in:
commit
52d66e5267
2 changed files with 7 additions and 5 deletions
|
@ -48,7 +48,9 @@ local incoming_s2s = incoming_s2s;
|
|||
|
||||
module "s2smanager"
|
||||
|
||||
local function compare_srv_priorities(a,b) return a.priority < b.priority or a.weight < b.weight; end
|
||||
function compare_srv_priorities(a,b)
|
||||
return a.priority < b.priority or (a.priority == b.priority and a.weight > b.weight);
|
||||
end
|
||||
|
||||
local function bounce_sendq(session, reason)
|
||||
local sendq = session.sendq;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue