Android SIP配置无效

时间:2016-07-28 07:42:02

标签: android sip telephony pjsip

我对SIP帐户的配置感到困惑。所以我想在这里,有人根据 SIP stack documentation 澄清问题。

一切正常,但现在我想为工作帐户添加一些配置。请注意,此协议中的所有其他方法都可以正常工作。我想要使​​用的是其配置方法: retryIntervalSec()delayBeforeRefreshSec()timeOutSec()

问题,这个方法不起作用,下面是设置此配置的一些示例。基于doc上面的delayBeforeRefreshSec具有5秒的值。因此,5秒后注册刷新,当我从默认配置获得此基本值时,它等于默认设置。但! 5秒后清爽不会发射!

你准备好了吗?

正如您所看到的,方法名称类似于" delayBeforeRefreshSec",这意味着用于输入秒(例如,delayBeforeRefreshSec(5))。但是,当我们从long(例如delayBeforeRefreshSec(100000))设置此方法值时,刷新开始每5秒开始一次!请注意,任何高于500的值,都会定期开始工作5秒!

我知道,可能在源代码中有一些验证和设置基值,如果它的价值更高一些。但那又是什么呢?为什么这种方法,这样工作?请注意,其他方法(如timeOutSec)不适用于任何值。

最后我的主要问题是,如何使这一切都可配置?

    mAccountConfig = new AccountConfig();
            mAccountConfig.setIdUri(myAccountName);
            mAccountConfig.getRegConfig().setRetryIntervalSec(SIP_RECONNECT_DELAY);
            mAccountConfig.getRegConfig().setDelayBeforeRefreshSec(SIP_KEEP_ALIVE_DELAY);
            mAccountConfig.getNatConfig().setUdpKaIntervalSec(SIP_KEEP_ALIVE_DELAY);

//....

mAccount = new Account;
mAccount.create(mAccountConfig);

1 个答案:

答案 0 :(得分:2)

我试图强制pjsip库以所需的时间间隔刷新注册时遇到了同样的问题。我发现pjsua_acc_config Struct Reference提供了有关可以为注册设置的所有参数的更多详细信息。

不幸的是,并非所有参数都能正常工作,因此我最终使用了setDelayBeforeRefreshSec方法,该方法将通过设置发送刷新消息的注册过期前的秒数来执行操作。例如,如果使用mAccountConfig.getRegConfig().setDelayBeforeRefreshSec(20),则会导致刷新以40秒的间隔发生。因此,对于您需要5秒间隔,您必须使用mAccountConfig.getRegConfig().setDelayBeforeRefreshSec(60-SIP_KEEP_ALIVE_DELAY)

此外,旨在更改到期间隔setTimeoutSec的方法不起作用,因此默认使用60秒的间隔(不知道为什么到底,因为在文档中提到了默认值为PJSUA_REG_INTERVAL,即300)。

Bellow是我的配置,用于在33秒刷新注册,并为每种方法添加注释。

        /*
        * 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 reg_first_retry_interval 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.
        * */
        sipAccountConfig.getRegConfig().setFirstRetryIntervalSec(3);
        sipAccountConfig.getRegConfig().setRetryIntervalSec(10);

        /*
        * This specifies maximum randomized value to be added/subtracted to/from the
        * registration retry interval specified in reg_retry_interval and
        * reg_first_retry_interval, in second. This is useful to avoid all clients
        * re-registering at the same time. For example, if the registration retry interval
        * is set to 100 seconds and this is set to 10 seconds, the actual registration retry
        * interval will be in the range of 90 to 110 seconds.
        */
        sipAccountConfig.getRegConfig().setRandomRetryIntervalSec(7);

        /*
        * Optional interval for registration, in seconds. If the value is zero, default
        * interval will be used (PJSUA_REG_INTERVAL, 300 seconds).
        */
        sipAccountConfig.getRegConfig().setTimeoutSec(60);

        /*
         * Specify the number of seconds to refresh the client registration before the
         * registration expires.
         * Default: PJSIP_REGISTER_CLIENT_DELAY_BEFORE_REFRESH, 5 seconds
         */
        sipAccountConfig.getRegConfig().setDelayBeforeRefreshSec(27);

希望它会帮助你或某人。