Reputation: 2451
I was trying to implement the SIP concept in my app. For that I found PORTSIP sample code. It is working fine with the given credentials (domain, username, password). But it is a trial version, not an open source.
Does there any open source for the VoIP calling. Please help me out that what steps should I follow to implement the audio calling via SIP.
Upvotes: 3
Views: 1696
Reputation: 4530
I have found this three options so far:
To run Linphone project without any problems (build using SDK7 XCode5), try the following:
liblinphone-sdk
in the main folder of project. linphone.xcodeproj
and run the linphone project.Upvotes: 1
Reputation: 71
If you are looking for open source implementation of the SIP stack, take a look at : OSIP
You can create your own single user SIP Phone, or a SIP call server to handle 100s of calls..
eXosip is higher level wrapper for convenience in case you don't want to go too deep into the stack code.
For RTP, you can use oRTP
Linphone is developed using osip/eXosip/oRTP stack.
Upvotes: 0