如何删除 pjsip Android 中联系的 ob 参数?

How to remove ob parameter in contact in pjsip Android?

在我的 sip 注册消息中,来自 Android 使用 pjsip 堆栈的拨号器应用程序似乎在联系中发送 ob 参数。如何在 Android?

中删除此参数

这是我的 Android 拨号器发送的注册消息中的联系人 header。

Contact: <sip:10000018@192.168.1.33:38167;ob>

我从 pjsip 网站上找到了这个 link,它告诉我设置

If pjsua_acc_config.use_rfc5626 is set to PJ_FALSE, we shouldn't add the "ob" parameter in the Contact header.

https://trac.pjsip.org/repos/ticket/1256

但不幸的是,我在 pjsip Android 中找不到等效项,它有助于在 Java 代码中进行该设置。

accCfg.getNatConfig().setSipOutboundUse(0);


在使用帐户配置 class.

添加我的帐户时使用了上面的代码

accCfg is of class type AccountConfig