Opened 14 years ago
Closed 14 years ago
#1313 closed enhancement (fixed)
Account option to disable registration when account is added (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 option is added to pjsua_acc_config to control whether REGISTER should be sent as soon as the account is added:
/** * Specify whether the account should register as soon as it is * added to the UA. Application can set this to PJ_FALSE and control * the registration manually with pjsua_acc_set_registration(). * * Default: PJ_TRUE */ pj_bool_t register_on_acc_add;
The default is PJ_TRUE to be compatible with current behavior.
Change History (1)
comment:1 Changed 14 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