VOIP C++编程
我想编写一个程序来为我的最后一年项目创建 VOIP 应用程序。目前,我花时间了解 SIP 的工作原理,稍后我需要将其实施到我的项目中。据我所知,构建这个项目的协议要求是:
- UDP
- RTP
至于我的项目,它不需要我编写复杂的编码。我只需要提供一个服务器,可以作为客户端沟通的桥梁。那么,有什么资源可供我参考以开始对我的项目进行编程吗?
I want to write a program to create VOIP application for my final year project. For this time being, I spend my time to understand how SIP works and later I need to implement it into my project. As far as i know, the protocol requirement to build this project are:
- UDP
- RTP
As for my project, it doesn't requires me to write a complex coding. I just need to provide a server that can be used as a bridge for clients to communicate. So, is there any resources that I can used for my reference to start programming my project?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
也许这些会有助于查看:
jrtplib:
liveMedia
Maybe these will be helpful to look at:
jrtplib:
liveMedia
你最好的选择是 pjsip。
http://www.pjsip.org/
它可以在各种操作系统上运行
Your best bet is pjsip.
http://www.pjsip.org/
It runs on all kinds of OSes
OpenSipStack 非常好,它 100% C++。
该项目还包含一个使用 ATL 创建客户端的库。
OpenSipStack is quite nice, it's 100% C++.
The project also contains a library for creating clients using ATL.
看看 OPAL。它允许您编写支持 SIP、H.323 和 IAX2 的应用程序。
Take a look at OPAL. It allows you to write applications that will support SIP, H.323 and IAX2.