How can i change the default pjsua2 reregistration after registration failure. Currently it has been set to 300 second. I wish to set to retry registration after a registration failure to around 60 second.
i went through documentation ...but some how i am not able to implement them on sample android pjsua2 app.
unsigned timeoutSec Optional interval for registration, in seconds.
If the value is zero, default interval will be used (PJSUA_REG_INTERVAL, 300 seconds).
unsigned retryIntervalSec Specify interval of auto registration retry upon registration failure (including caused by transport problem), in second.
Set to 0 to disable auto re-registration. Note that if the registration retry occurs because of transport failure, the first retry will be done after firstRetryIntervalSec seconds instead. Also note that the interval will be randomized slightly by some seconds (specified in reg_retry_random_interval) to avoid all clients re-registering at the same time.
See also firstRetryIntervalSec and randomRetryIntervalSec settings.
Default: PJSUA_REG_RETRY_INTERVAL
link : https://www.pjsip.org/docs/book-latest/html/reference.html
Why you're unable to implement this? What's wrong when you are trying to?
Actually, you answerd youreself already. You should find initialization of
AccountRegConfig
object and set value ofretryIntervalSec
property.If this is not working, what misbehave you are seeing?