Opened 13 years ago
Closed 13 years ago
#1314 closed enhancement (fixed)
New callback to notify application when registration or unregistration has been initiated (thanks Tony Jago Million for the patch)
Reported by: | bennylp | Owned by: | bennylp |
---|---|---|---|
Priority: | normal | Milestone: | release-1.12 |
Component: | pjsua-lib | Version: | 1.x-branch |
Keywords: | Cc: | ||
Backport to 1.x milestone: | Backported: |
Description
A new callback is added to pjsua_callback to allow application to be notified when the library has started or stopped registration:
/** * Notify application when registration or unregistration has been * initiated. Note that this only notifies the initial registration * and unregistration. Once registration session is active, subsequent * refresh will not cause this callback to be called. * * @param acc_id The account ID. * @param renew Non-zero for registration and zero for * unregistration. */ void (*on_reg_started)(pjsua_acc_id acc_id, pj_bool_t renew);
Change History (1)
comment:1 Changed 13 years ago by bennylp
- Resolution set to fixed
- Status changed from new to closed
Note: See
TracTickets for help on using
tickets.
(In [3594]) Closed #1313 (Account option to disable registration when account is added) and closed #1314 (New callback to notify application when registration or unregistration has been initiated). Thanks Tony Jago Million for the patch