status-go/vendor/github.com/pion/srtp/v2/option.go

74 lines
2.0 KiB
Go
Raw Normal View History

2024-05-15 23:15:00 +00:00
// SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
// SPDX-License-Identifier: MIT
2022-03-10 09:44:48 +00:00
package srtp
import (
2024-05-15 23:15:00 +00:00
"github.com/pion/transport/v2/replaydetector"
2022-03-10 09:44:48 +00:00
)
// ContextOption represents option of Context using the functional options pattern.
type ContextOption func(*Context) error
// SRTPReplayProtection sets SRTP replay protection window size.
2024-05-15 23:15:00 +00:00
func SRTPReplayProtection(windowSize uint) ContextOption { // nolint:revive
2022-03-10 09:44:48 +00:00
return func(c *Context) error {
c.newSRTPReplayDetector = func() replaydetector.ReplayDetector {
2024-05-15 23:15:00 +00:00
return replaydetector.New(windowSize, maxROC<<16|maxSequenceNumber)
2022-03-10 09:44:48 +00:00
}
return nil
}
}
// SRTCPReplayProtection sets SRTCP replay protection window size.
func SRTCPReplayProtection(windowSize uint) ContextOption {
return func(c *Context) error {
c.newSRTCPReplayDetector = func() replaydetector.ReplayDetector {
2024-05-15 23:15:00 +00:00
return replaydetector.New(windowSize, maxSRTCPIndex)
2022-03-10 09:44:48 +00:00
}
return nil
}
}
// SRTPNoReplayProtection disables SRTP replay protection.
2024-05-15 23:15:00 +00:00
func SRTPNoReplayProtection() ContextOption { // nolint:revive
2022-03-10 09:44:48 +00:00
return func(c *Context) error {
c.newSRTPReplayDetector = func() replaydetector.ReplayDetector {
return &nopReplayDetector{}
}
return nil
}
}
// SRTCPNoReplayProtection disables SRTCP replay protection.
func SRTCPNoReplayProtection() ContextOption {
return func(c *Context) error {
c.newSRTCPReplayDetector = func() replaydetector.ReplayDetector {
return &nopReplayDetector{}
}
return nil
}
}
2024-06-05 20:10:03 +00:00
// SRTPReplayDetectorFactory sets custom SRTP replay detector.
func SRTPReplayDetectorFactory(fn func() replaydetector.ReplayDetector) ContextOption { // nolint:revive
return func(c *Context) error {
c.newSRTPReplayDetector = fn
return nil
}
}
// SRTCPReplayDetectorFactory sets custom SRTCP replay detector.
func SRTCPReplayDetectorFactory(fn func() replaydetector.ReplayDetector) ContextOption {
return func(c *Context) error {
c.newSRTCPReplayDetector = fn
return nil
}
}
2022-03-10 09:44:48 +00:00
type nopReplayDetector struct{}
func (s *nopReplayDetector) Check(uint64) (func(), bool) {
return func() {}, true
}