- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我对 SIP 帐户的配置有点困惑。所以我想在这里,有人根据 SIP stack documentation 澄清问题 。
一切正常,但现在我想向工作帐户添加一些配置。请注意,此协议(protocol)中的所有其他方法都可以正常工作。我想用什么,它的配置方法: retryIntervalSec() , delayBeforeRefreshSec()和 timeOutSec() .
问题,这个方法不起作用,下面是设置这个配置的一些例子。基于上面的文档,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);
最佳答案
当我试图强制 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)。
下面是我的配置,用于在 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);
希望它能对您或其他人有所帮助。
关于Android SIP 配置不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38630025/
今天有小伙伴给我留言问到,try{...}catch(){...}是什么意思?它用来干什么? 简单的说 他们是用来捕获异常的 下面我们通过一个例子来详细讲解下
我正在努力提高网站的可访问性,但我不知道如何在页脚中标记社交媒体链接列表。这些链接指向我在 facecook、twitter 等上的帐户。我不想用 role="navigation" 标记这些链接,因
说现在是 6 点,我有一个 Timer 并在 10 点安排了一个 TimerTask。之后,System DateTime 被其他服务(例如 ntp)调整为 9 点钟。我仍然希望我的 TimerTas
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我就废话不多说了,大家还是直接看代码吧~ ? 1
Maven系列1 1.什么是Maven? Maven是一个项目管理工具,它包含了一个对象模型。一组标准集合,一个依赖管理系统。和用来运行定义在生命周期阶段中插件目标和逻辑。 核心功能 Mav
我是一名优秀的程序员,十分优秀!