Aaron Clauson

Results 181 comments of Aaron Clauson

Do you get any [DTLS alert log messages](https://github.com/sipsorcery-org/sipsorcery/blob/f157b072c059c9d1bff17cd979facdc08419fdf5/src/net/WebRTC/RTCPeerConnection.cs#L1717C9-L1717C9) in the application using the sipsorcery library? By the time the DTLS alert gets from the BouncyCastle DTLS client/server to the sipsorcery...

The RTCP support in this library is incomplete. SIP doesn't use RTCP much whereas WebRTC goes crazy with it. The RTCP report types supported are [here](https://github.com/sipsorcery-org/sipsorcery/blob/c4d13be8b401c5c06ea179ac248c0bfc9eb6325e/src/net/RTP/RTPSession.cs#L2023). ``` // Only call...

If your application is operating as a SIP Proxy it shouldn't have a problem forwarding UPDATE requests. Are you bale to provide a SIP trace of the traffic into and...

4s of latency sunds crazy high. That makes the audio essentially unusable, participants will be having different converstations. Once latency gets over 1s calls can get awkward. This library, and...

https://github.com/sipsorcery-org/sipsorcery/issues/1104 On Thu, 18 Apr 2024 at 20:10, Cyril Moore ***@***.***> wrote: > We found the issue: > > Chrome is now checking certificate type and needs to be passed...

Sounds like you're attempting to build a Stateful Proxy (like OpenSER, Kamailio) or a B2BUA Server (like Asterisk and FreeSWITCH w/o media). Both options are feasible with this library but...

Yes they do but if you don't have some way of dealing with NAT the incoming call is unlikely to get through to you. What's your network config?

There is no "team" or anyone to pay. This library is an open source project without any support options other than what interested volunteers contribute. Your logs are showing that...

> Did you ever try to make "VOIP" using C# WPF (.NET or .NET Framework) on WebRTC? No. The [softphone app](https://github.com/sipsorcery-org/sipsorcery/tree/master/examples/Softphone) is WPF but it's SIP rather than WebRTC,

Looks like a NAT issue. The remote connection is not getting any of your connection's STUN responses which suggests they are being blocked. You could try a TURN server if...