Opened 15 years ago
Last modified 15 years ago
#937 closed enhancement
Revamping of presence management to make it more efficient — at Version 5
Reported by: | bennylp | Owned by: | bennylp |
---|---|---|---|
Priority: | normal | Milestone: | release-1.5 |
Component: | pjsua-lib | Version: | trunk |
Keywords: | Cc: | johan, emil | |
Backport to 1.x milestone: | Backported: |
Description (last modified by bennylp)
Some issues to be fixed in the presence management in PJSUA-LIB:
- pjsua_pres_refresh() will be called every time there is an operation to a buddy, which is not very efficient since this function scans the buddy list for modifications.
- the use of LOCK_BUDDIES/LOCK_BUDDIES (introduced by #351) has been identified to have caused slow performance, especially on mobile devices, since it prevents other thread from working with different buddy object every time the main thread does something with a buddy.
- buddy may need individual timer, so that refreshes do not happen all at once.
- add the last subscription status code (not just reason string) in the buddy info, so that application may handle some other failures with the buddy subscription
- sending of PUBLISH in relation to REGISTER
- handle several cases where PJSUA-LIB should re-subscribe to buddy's presence immediately, rather than relying on the timer:
- 481 response
- subscription is terminated with "deactivated", "timeout", "probation", and "giveup" reason
Change History (5)
comment:1 Changed 15 years ago by bennylp
- Description modified (diff)
comment:2 Changed 15 years ago by bennylp
- Description modified (diff)
comment:3 Changed 15 years ago by bennylp
- Description modified (diff)
comment:4 Changed 15 years ago by bennylp
- Description modified (diff)
comment:5 Changed 15 years ago by bennylp
- Description modified (diff)
Also resubscribe immediately or after retry-after parameter for "timeout", "probation", and "giveup" reasons. Thanks Iñaki Baz Castillo for the suggestion.
Note: See
TracTickets for help on using
tickets.
Added to resubscribe immediately if subscription is terminated with "deactivated" reason. From the RFC:
Thanks Saúl Ibarra for the suggestion