Files
rtsp-simple-server/internal/protocols/webrtc/tcp_mux_wrapper.go
Alessandro Ros 5ae934887d remove custom forks of pion/webrtc and pion/ice (#4861)
this fixes IPv6 reliability issues and allows to receive upstream
updates in a more linear way.
2025-08-12 14:30:08 +02:00

14 lines
175 B
Go

package webrtc
import (
"net"
"github.com/pion/ice/v4"
)
// TCPMuxWrapper is a wrapper around ice.TCPMux.
type TCPMuxWrapper struct {
Mux ice.TCPMux
Ln net.Listener
}