Looking for a good SIP implementation in C #

I saw a similar question from 1.5 years ago, and I hope there is something better.

I am looking for a fully manageable C # implementation because I need it for .NET Microframework, so I cannot have a .NET wrapper around C code.

Does anyone come across a good implementation of the C # SIP protocol. I should not, so that I am not interested in codecs, will mainly deal with call control.

+5
source share
4 answers

My own SIP SIP stack is in sipsorcery . This is far from ideal, but since the RFC3261 SIP standard is coming, it should be pretty good, and you can only connect to it using SIPSorcery.Core. Server applications can be ignored if you look at specialized call management.

+3
source

I am using ozeki voip sip sdk. It is written in C # and provides a complete SIP implementation with all RFCs. The others I tried were partial implementations and did not work with all of my PBXs.

+1
source

SIP, VoIP. . :

(SIP) - , IETF, , -. SIP , , , .

, SIP , . (: Ozeki VoIP SIP SDK VoIP- SIP.)

-: http://voip-sip-sdk.com/p_304-sip-protocol-implementation-voip.html. , SDK , .

+1
source

This .NET SIP SDK is probably the most comprehensive.

0
source

All Articles