PJSIP服务器开发
使用pjsip技术开发服务器的时候,在寻找开发服务器的方法时,官方网站有点难用。
它介绍了如何使用该库开发客户端应用程序,但没有介绍如何实现服务器。
任何人都可以引导我访问一些参考文档或 blob 帖子或其他可以帮助我展示如何创建基于 pjsip 的服务器的网站吗?
When using pjsip technology to develop a server, the official web site is a bit difficult to use when looking for a way to develop a server.
It has an introduction on how to develop a client application with the library, but not how to implement a server.
Any one direct me to some reference documentation or blob posts or other web site that can help show me how to create a pjsip based server?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以在 PJSIP 源代码中找到示例 SIP 代理实现: http://trac.pjsip.org/repos/browser/pjproject/trunk/pjsip-apps/src/samples/stateful_proxy.c 和 http://trac.pjsip.org/repos/browser/pjproject/trunk/pjsip-应用程序/src/samples/stateless_proxy.c
You can find a sample SIP proxy implementation inside the PJSIP source code: http://trac.pjsip.org/repos/browser/pjproject/trunk/pjsip-apps/src/samples/stateful_proxy.c and http://trac.pjsip.org/repos/browser/pjproject/trunk/pjsip-apps/src/samples/stateless_proxy.c
Asterisk SCF模块使用pjsip。也许这会有所启发
更多信息,请访问
https://wiki .asterisk.org/wiki/display/TOP/How+to+add+a+PJSIP+module+to+Asterisk+SCF
https://wiki.asterisk.org/wiki/display/AST/SIP +堆栈+研究
Asterisk SCF module uses pjsip. Maybe that will shed some light
More information, visit
https://wiki.asterisk.org/wiki/display/TOP/How+to+add+a+PJSIP+module+to+Asterisk+SCF
https://wiki.asterisk.org/wiki/display/AST/SIP+Stack+Research
我想我找到了。 pjproject 中的 PJSUA 实用程序 树充当 SIP 服务器, Zoiper 软件电话 成功连接并拨打电话。
I think I found it. PJSUA utility in pjproject tree acts as SIP server, Zoiper Softphone successfully connects and makes calls.