Sudha Tiwari
Sudha Tiwari

Reputation: 2451

SIP communication open source

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

Answers (2)

Dimitris Bouzikas
Dimitris Bouzikas

Reputation: 4530

I have found this three options so far:

  1. The Linphone is good, and not trial.
  2. Siphon - SIP -VoIP for iPhone and iPod Touch
  3. IDoubs - VideoPhone for iOS (iPhone, iPad and iPod Touch) and MAC OS X

To run Linphone project without any problems (build using SDK7 XCode5), try the following:

  1. First download build files and unzip them.
  2. Place the folder liblinphone-sdk in the main folder of project.
  3. Open linphone.xcodeproj and run the linphone project.

Upvotes: 1

dnarsay
dnarsay

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

Related Questions