- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试让 PJSIP 在我的 iOS 项目中工作以连接到我的 Asterisk 服务器。我用 wireshark 做了一个数据包捕获,由于某种原因,PJSIP 没有像它应该的那样响应 401 挑战。
更奇怪的是,在极少数情况下,它确实有效。就像正在发生某种竞争条件一样,但这都存在于 PJSIP 本身中。因为我只打电话...
pjsua_acc_add(&accountConfig, PJ_TRUE, &accID);
然后 PJSIP 库做他们的事情。
这是数据包捕获的片段。10.200.0.72 是我的 Asterisk 服务器。 10.200.154.118 是我的测试 iOS 设备。
REGISTER sip:10.200.0.72 SIP/2.0
Via: SIP/2.0/UDP 10.200.154.118:5080;rport;branch=z9hG4bKPjLjNBXVcaqqPqYVtTR2GDEQJhhGYG7Fo3
Max-Forwards: 70
From: <sip:110@10.200.0.72>;tag=JgDAcidZf0Ew-Jqgei0Am3Znyl2SEFg.
To: <sip:110@10.200.0.72>
Call-ID: hTMu0Vi.Kte6PntnMJdxQmeBWtKdXZd0
CSeq: 59555 REGISTER
Contact: <sip:110@10.200.154.118:5080;ob>
Expires: 300
Allow: PRACK, INVITE, ACK, BYE, CANCEL, UPDATE, INFO, SUBSCRIBE, NOTIFY, REFER, MESSAGE, OPTIONS
Content-Length: 0
REGISTER sip:10.200.0.72 SIP/2.0
Via: SIP/2.0/UDP 10.200.154.118:5080;rport;branch=z9hG4bKPjLjNBXVcaqqPqYVtTR2GDEQJhhGYG7Fo3
Max-Forwards: 70
From: <sip:110@10.200.0.72>;tag=JgDAcidZf0Ew-Jqgei0Am3Znyl2SEFg.
To: <sip:110@10.200.0.72>
Call-ID: hTMu0Vi.Kte6PntnMJdxQmeBWtKdXZd0
CSeq: 59555 REGISTER
Contact: <sip:110@10.200.154.118:5080;ob>
Expires: 300
Allow: PRACK, INVITE, ACK, BYE, CANCEL, UPDATE, INFO, SUBSCRIBE, NOTIFY, REFER, MESSAGE, OPTIONS
Content-Length: 0
SIP/2.0 401 Unauthorized
Via: SIP/2.0/UDP 10.200.154.118:5080;rport=5080;received=10.200.154.118;branch=z9hG4bKPjLjNBXVcaqqPqYVtTR2GDEQJhhGYG7Fo3
Call-ID: hTMu0Vi.Kte6PntnMJdxQmeBWtKdXZd0
From: <sip:110@10.200.0.72>;tag=JgDAcidZf0Ew-Jqgei0Am3Znyl2SEFg.
To: <sip:110@10.200.0.72>;tag=z9hG4bKPjLjNBXVcaqqPqYVtTR2GDEQJhhGYG7Fo3
CSeq: 59555 REGISTER
WWW-Authenticate: Digest realm="asterisk",nonce="1485330086/50f04167f65383db99f5c0cf17651984",opaque="73b3a6a8599485f8",algorithm=md5,qop="auth"
Server: FPBX-13.0.190.11(13.12.1)
Content-Length: 0
SIP/2.0 401 Unauthorized
Via: SIP/2.0/UDP 10.200.154.118:5080;rport=5080;received=10.200.154.118;branch=z9hG4bKPjLjNBXVcaqqPqYVtTR2GDEQJhhGYG7Fo3
Call-ID: hTMu0Vi.Kte6PntnMJdxQmeBWtKdXZd0
From: <sip:110@10.200.0.72>;tag=JgDAcidZf0Ew-Jqgei0Am3Znyl2SEFg.
To: <sip:110@10.200.0.72>;tag=z9hG4bKPjLjNBXVcaqqPqYVtTR2GDEQJhhGYG7Fo3
CSeq: 59555 REGISTER
WWW-Authenticate: Digest realm="asterisk",nonce="1485330086/50f04167f65383db99f5c0cf17651984",opaque="73b3a6a8599485f8",algorithm=md5,qop="auth"
Server: FPBX-13.0.190.11(13.12.1)
Content-Length: 0
这是我实现此目的的 OBJ-C 代码...
- (void) startAndRegisterOnServer:(NSString *)sipDomain withUserName:(NSString *)sipUser andPassword:(NSString *)password success:(void (^)(void))success failure:(void (^)(int errorCode, NSString *errorMessage))failure
{
pj_status_t status;
status = pjsua_create();
if (status != PJ_SUCCESS)
{
failure (status, @"Error in pjsua_create");
return;
}
// Setup Config and Initialize
pjsua_config config;
pjsua_config_default (&config);
config.cb.on_incoming_call = &on_incoming_call;
config.cb.on_call_media_state = &on_call_media_state;
config.cb.on_call_state = &on_call_state;
config.cb.on_reg_state2 = &on_reg_state2;
pjsua_logging_config logConfig;
pjsua_logging_config_default(&logConfig);
logConfig.console_level = 5;
status = pjsua_init(&config, &logConfig, NULL);
if (status != PJ_SUCCESS)
{
failure (status, @"Error in pjsua_init");
return;
}
// Add UDP transport
pjsua_transport_config udpTransportConfig;
pjsua_transport_config_default(&udpTransportConfig);
udpTransportConfig.port = 5080;
status = pjsua_transport_create(PJSIP_TRANSPORT_UDP, &udpTransportConfig, NULL);
if (status != PJ_SUCCESS)
{
failure (status, @"Error adding UDP transport");
return;
}
// Add TCP transport.
pjsua_transport_config tcpTransportConfig;
pjsua_transport_config_default(&tcpTransportConfig);
tcpTransportConfig.port = 5080;
status = pjsua_transport_create(PJSIP_TRANSPORT_TCP, &tcpTransportConfig, NULL);
if (status != PJ_SUCCESS)
{
failure (status, @"Error adding TCP transport");
return;
}
// Startup PJSUA
status = pjsua_start();
if (status != PJ_SUCCESS)
{
failure (status, @"Error starting PJSUA");
return;
}
// Register with SIP Server
pjsua_acc_config accountConfig;
pjsua_acc_config_default(&accountConfig);
// Account ID
char sipAccount [MAX_SIP_ACCOUNT_LENGTH];
sprintf (sipAccount, "sip:%s@%s", [sipUser UTF8String], [sipDomain UTF8String]);
accountConfig.id = pj_str(sipAccount);
// Register URI
char regUri[MAX_SIP_REGISTER_URI_LENGTH];
sprintf(regUri, "sip:%s", [sipDomain UTF8String]);
accountConfig.reg_uri = pj_str(regUri);
// Set the credentials in accountConfig
accountConfig.cred_count = 1;
accountConfig.cred_info[0].scheme = pj_str("digest");
accountConfig.cred_info[0].realm = pj_str("asterisk");
accountConfig.cred_info[0].username = pj_str((char *)[sipUser UTF8String]);
accountConfig.cred_info[0].data_type = PJSIP_CRED_DATA_PLAIN_PASSWD;
accountConfig.cred_info[0].data = pj_str((char *)[password UTF8String]);
pjsua_acc_id accID;
status = pjsua_acc_add(&accountConfig, PJ_TRUE, &accID);
[PJSIPInterfaceManager sharedInstance].accountID = accID;
if (status != PJ_SUCCESS)
{
failure (status, @"Error registering account with server");
return;
}
success();
}
有什么想法吗?再次在极少数情况下我可以让它工作,但它就像 50 次中的 1 次。
所以经过大量的故障排除。我相信这可能与 NAT 相关。我有两台服务器。一个是我的网络内部,这是这个例子所基于的 (10.200.0.72) 和一个外部服务器。但是我在两台服务器上都遇到了问题。下面是我使用我的外部 Asterisk 服务器连夜进行的测试。我让我的 iOS 客户端运行了一整夜,仍然无法注册。它设置为默认的 5 分钟重试。这是因为它一直在重新发送相同的数据包,因为 CSeq 没有递增。然后半夜客户端终于连上了。
在日志中我注意到了这一点......
04:19:22.706 pjsua_acc.c ...SIP registration failed, status=408 (Request Timeout)
04:24:20.767 pjsua_acc.c ....IP address change detected for account 0 (10.200.154.118:5080 --> [MY EXTERNAL IP]:31943). Updating registration (using method 4)
04:24:20.810 pjsua_acc.c ....sip:100@[EXTERNAL ASTERISK IP]: registration success, status=200 (OK), will re-register in 300 seconds
请注意,我编辑了我的外部 Asterisk 服务器的 IP 和我的公共(public) IP。
您会在第二行看到 PJSIP 客户端注意到我的 IP 已更改。实际上并没有,设备保留了 10.200.154.118。但出于某种原因,它突然开始在数据包的 VIA 行中为我的路由器发送我的公共(public) IP。然后你可以在下一行看到它注册成功。
这是数据包捕获中的 VIA 线路...
来自:
Via: SIP/2.0/UDP 10.200.154.118:5080;rport;branch=z9hG4bKPjegwWD-UEDhH3c5cShdumEEbKvfmK45Zl
收件人:
Via: SIP/2.0/UDP [MY EXTERNAL IP]:31943;rport;branch=z9hG4bKPjxcKgVfSngqxxTy7MnGhZU5Y3RrjpczNr
此外,CSeq 编号也最终递增,并且已发送授权 header 。
然后大约 3 小时 20 分钟后,它再次回到失败状态。然而它仍在使用我的外部 IP(它没有恢复到它的 10 地址。)这是在服务器发送一连串的 OPTIONS 消息之后。大约连续 20 次客户没有响应......
OPTIONS sip:100@[MY EXTERNAL IP]:31943;ob SIP/2.0
Via: SIP/2.0/UDP [EXTERNAL ASTERISK IP]:5060;branch=z9hG4bK6128eaf9;rport
Max-Forwards: 70
From: "Unknown" <sip:Unknown@[EXTERNAL ASTERISK IP]>;tag=as165c224d
To: <sip:100@[MY EXTERNAL IP]:31943;ob>
Contact: <sip:Unknown@[EXTERNAL ASTERISK IP]:5060>
Call-ID: 341a15d536c3a3b45a73567056e34b6b@[EXTERNAL ASTERISK IP]:5060
CSeq: 102 OPTIONS
User-Agent: Mozilla
Date: Fri, 27 Jan 2017 14:45:48 GMT
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY, INFO, PUBLISH, MESSAGE
Supported: replaces, timer
Content-Length: 0
老实说,我不知道这个 OPTION 消息是关于什么的。但是在连续大约 20 个之后,随后的 REGISTER 失败并继续这样做。
我刚刚也注意到了一些事情。 端口从客户端上的静态 5080 监听端口更改为随机动态端口。您会在两条 VIA 线中看到这一点。这让我觉得,即使我在我的网络中看到数据包,它也没有到达客户端,因为它没有在那个端口上监听?我应该在客户端上设置任何配置来解决这个问题吗?
有什么见解吗?
最佳答案
不久前我在 PJSIP 工作过。我将您的启动代码与我的启动代码进行了比较,这里有一些差异。不确定是否有帮助。
在顶部我做了一个:
if (pjsua_acc_get_count() > 0)
{
[self unregisterAccount];
}
一点点:
accountConfig.reg_timeout = 110;
accountConfig.ka_interval = 5;
accountConfig.allow_contact_rewrite = 0;
最后,这是 unregisterAccount
方法:
- (void)unregisterAccount
{
@synchronized(self)
{
pj_status_t status;
unsigned count;
[self registerThread];
count = pjsua_acc_get_count();
if (count > 0)
{
pjsua_acc_info* info = calloc(count, sizeof(pjsua_acc_info));
for (int n = 0; n < count; n++)
{
status = pjsua_acc_enum_info(info, &count);
if (status == PJ_SUCCESS)
{
status = pjsua_acc_del(info[n].id);
if (status != PJ_SUCCESS)
{
NSLog(@"Unregister unsuccessful");
}
}
}
free(info);
}
accountId = -1;
}
}
我希望这会有所帮助,但我想不会。您并不孤单,PJSIP 和 SIP 通常很难在每种情况下工作。祝你成功!
如果没有任何帮助,我猜 PJSIP 的论坛还在工作吗?
关于ios - PJSIP 不响应 401 的身份验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41846403/
IO 设备如何知道属于它的内存中的值在memory mapped IO 中发生了变化? ? 例如,假设内存地址 0 专用于保存 VGA 设备的背景颜色。当我们更改 memory[0] 中的值时,VGA
我目前正在开发一个使用Facebook sdk登录(通过FBLoginView)的iOS应用。 一切正常,除了那些拥有较旧版本的facebook的人。 当他们按下“使用Facebook登录”按钮时,他
假设我有: this - is an - example - with some - dashesNSRange将使用`rangeOfString:@“-”拾取“-”的第一个实例,但是如果我只想要最后
Card.io SDK提供以下详细信息: 卡号,有效期,月份,年份,CVV和邮政编码。 如何从此SDK获取国家名称。 - (void)userDidProvideCreditCardInfo:(Car
iOS 应用程序如何从网络服务下载图片并在安装过程中将它们安装到用户的 iOS 设备上?可能吗? 最佳答案 您无法控制应用在用户设备上的安装,因此无法在安装过程中下载其他数据。 只需在安装后首次启动应
我曾经开发过一款企业版 iOS 产品,我们公司曾将其出售给大型企业,供他们的员工使用。 该应用程序通过 AppStore 提供,企业用户获得了公司特定的配置文件(包含应用程序配置文件)以启用他们有权使
我正在尝试将 Card.io SDK 集成到我的 iOS 应用程序中。我想为 CardIO ui 做一个简单的本地化,如更改取消按钮标题或“在此保留信用卡”提示文本。 我在 github 上找到了这个
我正在使用 CardIOView 和 CardIOViewDelegate 类,没有可以设置为 YES 的 BOOL 来扫描 collectCardholderName。我可以看到它在 CardIOP
我有一个集成了通话工具包的 voip 应用程序。每次我从我的 voip 应用程序调用时,都会在 native 电话应用程序中创建一个新的最近通话记录。我在 voip 应用程序中也有自定义联系人(电话应
iOS 应用程序如何知道应用程序打开时屏幕上是否已经有键盘?应用程序运行后,它可以接收键盘显示/隐藏通知。但是,如果应用程序在分屏模式下作为辅助应用程序打开,而主应用程序已经显示键盘,则辅助应用程序不
我在模拟器中收到以下错误: ImageIO: CGImageReadSessionGetCachedImageBlockData *** CGImageReadSessionGetCachedIm
如 Apple 文档所示,可以通过 EAAccessory Framework 与经过认证的配件(由 Apple 认证)进行通信。但是我有点困惑,因为一些帖子告诉我它也可以通过 CoreBluetoo
尽管现在的调试器已经很不错了,但有时找出应用程序中正在发生的事情的最好方法仍然是古老的 NSLog。当您连接到计算机时,这样做很容易; Xcode 会帮助弹出日志查看器面板,然后就可以了。当您不在办公
在我的 iOS 应用程序中,我定义了一些兴趣点。其中一些有一个 Kontakt.io 信标的名称,它绑定(bind)到一个特定的 PoI(我的意思是通常贴在信标标签上的名称)。现在我想在附近发现信标,
我正在为警报提示创建一个 trigger.io 插件。尝试从警报提示返回数据。这是我的代码: // Prompt + (void)show_prompt:(ForgeTask*)task{
您好,我是 Apple iOS 的新手。我阅读并搜索了很多关于推送通知的文章,但我没有发现任何关于 APNS 从 io4 到 ios 6 的新更新的信息。任何人都可以向我提供 APNS 如何在 ios
UITabBar 的高度似乎在 iOS 7 和 8/9/10/11 之间发生了变化。我发布这个问题是为了让其他人轻松找到答案。 那么:在 iPhone 和 iPad 上的 iOS 8/9/10/11
我想我可以针对不同的 iOS 版本使用不同的 Storyboard。 由于 UI 的差异,我将创建下一个 Storyboard: Main_iPhone.storyboard Main_iPad.st
我正在写一些东西,我将使用设备的 iTunes 库中的一部分音轨来覆盖 2 个视频的组合,例如: AVMutableComposition* mixComposition = [[AVMutableC
我创建了一个简单的 iOS 程序,可以顺利编译并在 iPad 模拟器上运行良好。当我告诉 XCode 4 使用我连接的 iPad 设备时,无法编译相同的程序。问题似乎是当我尝试使用附加的 iPad 时
我是一名优秀的程序员,十分优秀!