Sandhurst
Sandhurst

Reputation:

Open Source SIP Dialer in C#

Is there any Open Source Code availbale for makeing A SIP Dialer in C# or any other language

Upvotes: 1

Views: 9561

Answers (3)

Tahir Almas
Tahir Almas

Reputation: 31

PjSIP and Sofiasip are two top SIP communication libraries to develop dialers of your choice, however there are already many dialers already developed.

Please check following list of dialers developed over PJSIP sip stack, may someone from list fulfill all of your requirements.

Upvotes: 3

sipsorcery
sipsorcery

Reputation: 30724

MySIPSwitch uses a C# SIP stack mss source. The media support in that stack is not complete but the SIP stack is pretty good. The stack is used to run the service by the same name mss service.

Upvotes: 1

E Dominique
E Dominique

Reputation: 1575

Yes, take a look at PJSIP. It is implemented in very portable C. But it also has a number of wrappers in other languages, like this .NET wrapper.

PJSIP, or rather its UA (SIP Dialer) interface PJSUA is very easy to handle, and takes care of both signalling and media for you. Oh, and it's under GPL license.

Upvotes: 1

Related Questions