We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd27a52 commit e4b257dCopy full SHA for e4b257d
2 files changed
flight3handler.go
@@ -307,7 +307,8 @@ func flight3Generate(
307
308
if len(cfg.localSRTPProtectionProfiles) > 0 {
309
extensions = append(extensions, &extension.UseSRTP{
310
- ProtectionProfiles: cfg.localSRTPProtectionProfiles,
+ ProtectionProfiles: cfg.localSRTPProtectionProfiles,
311
+ MasterKeyIdentifier: cfg.localSRTPMasterKeyIdentifier,
312
})
313
}
314
pkg/protocol/extension/use_srtp.go
@@ -15,7 +15,7 @@ const (
15
// UseSRTP allows a Client/Server to negotiate what SRTPProtectionProfiles
16
// they both support
17
//
18
-// https://tools.ietf.org/html/rfc8422
+// https://datatracker.ietf.org/doc/html/rfc5764
19
type UseSRTP struct {
20
ProtectionProfiles []SRTPProtectionProfile
21
MasterKeyIdentifier []byte
0 commit comments