Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Looking for a good SIP implementation in C# [closed]

I saw a similar question from 1.5 years ago and I am hoping there is something better.

I am looking for a totally managed C# implementation because I need it for the .NET Microframework, so I can't have .NET wrappers around C code.

Has anyone run into a good C# implementation of the SIP protocol. I should not that I don't care about codecs, mostly will be dealing with call control.

like image 559
AngryHacker Avatar asked Aug 12 '10 05:08

AngryHacker


1 Answers

My own C# SIP stack is at sipsorcery. It's far from perfect but as far as the RFC3261 core SIP standard goes it should be pretty good and you can hook into that using only SIPSorcery.Core assembly. The server applications can be disregarded if you're looking at doing some specialised call control.

like image 124
sipsorcery Avatar answered Sep 18 '22 10:09

sipsorcery