xcode 在 iPhone 应用程序中使用 SIP

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/3325663/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-14 19:34:12  来源:igfitidea点击:

Use SIP in iPhone app

iphonexcodevoipsip

提问by CyberK

I want to build an iPhone app which has the option to make calls over SIP (VoIP) but at this moment I have no idea how to start.

我想构建一个 iPhone 应用程序,它可以选择通过 SIP (VoIP) 拨打电话,但此时我不知道如何开始。

Does anyone have some information about this topic, or maybe a demo project which I can use to implement the SIP functionality?

有没有人有关于这个主题的一些信息,或者我可以用来实现 SIP 功能的演示项目?

Thanks in advance!

提前致谢!

回答by Frank Shearar

You could check out siphon.

你可以看看siphon

回答by karlphillip

For this project you'll need a SIP server to handle SIP requests from the iPhone clients. Yes, not so simple is it?

对于这个项目,您需要一个 SIP 服务器来处理来自 iPhone 客户端的 SIP 请求。是的,不是那么简单吗?

There are open source SIP implementations (like this one) which you can easily find googling.

有一些开源 SIP 实现(比如这个),你可以很容易地在谷歌上找到。

Of course, you can also make your own implementation of the SIP protocol (RFC 3261).

当然,您也可以自己实现 SIP 协议 ( RFC 3261)。