From eb6e39557d054194dc47bd6af6fb744b2fde4027 Mon Sep 17 00:00:00 2001 From: Sean DuBois Date: Wed, 3 Apr 2024 12:48:11 -0400 Subject: [PATCH] Retract v3.2.28 The SCTP implementation used in v3.2.28 fails to establish a connection with other WebRTC implementations. The implementation of ZeroChecksum assumes incorrectly that the feature is bi-directional SCTP ZeroChecksum is actually a uni-directional feature which causes the Assocations to be unable to communicate. --- go.mod | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/go.mod b/go.mod index da6fb53c71..debbfbec79 100644 --- a/go.mod +++ b/go.mod @@ -22,3 +22,7 @@ require ( github.com/stretchr/testify v1.9.0 golang.org/x/net v0.20.0 ) + +// SCTP ZeroChecksum implementation has a interoperability bug +// 3.2.28 can only work against itself, not other versions of webrtc +retract v3.2.28