T. Hajar
T. Hajar

Reputation: 79

Implementing SIP for WebRTC on iOS

I am building an RTC iOS app client. I am using the google WebRTC iOS library. However, since WebRTC doesn't implement signalling I am searching for an easy way to implement a SIP stack at the signalling layer. I tried Pjsip but it didn't work:

I am not sure if Pjsip is really what I need, especially that WebRTC already has all the features I need except for SIP signalling. I would be thankful if anyone can guide me to how to proceed with Pjsip or give me another open-source easy to use SIP library.

Thanks.

Upvotes: 6

Views: 3592

Answers (3)

T. Hajar
T. Hajar

Reputation: 79

I found a nice open source SIP library with small footprint called libre.

Upvotes: 1

jeand
jeand

Reputation: 2385

You may want to use (and potentially contribute to) RestComm iOS SDK at https://github.com/Mobicents/restcomm-ios-sdk. It uses Sofia SIP Stack.

Upvotes: 1

Danil
Danil

Reputation: 2537

I would consider a web sockets signaling.

Take a look here: https://github.com/muaz-khan/WebRTC-Experiment

Upvotes: 0

Related Questions