user1240409
user1240409

Reputation: 75

VOIP implementation in iPhone app

I have to implement VOIP in iPhone app,which is the best way of performing this. If you have any idea please share with me or give me some pointer from where i can explore and get some better solution. Thanks

Upvotes: 0

Views: 1759

Answers (2)

user1397935
user1397935

Reputation: 151

Use pjsip. It's a SIP library written in C. pjsip uses GPL license.

You may find documentation to do so.

Upvotes: 0

Pandey_Laxman
Pandey_Laxman

Reputation: 3908

Yes you can have iPhone Voip app. Could you please let me know what will be the purpose or functionality do you want to have in this app.

If you want to make calls using VoIP uses SIP(session initiation protocol) for communication to VoIP tor VoIP to PSTN. Follow the below URL for iPhone VoIP Client.

http://code.google.com/p/siphon

Get the source code and compiled it using the instructions from below URL;

http://code.google.com/p/siphon/wiki/Compilation

For VoIP Stack Please visit www.pjsip.org.

Upvotes: 2

Related Questions