mirror of
https://github.com/bluenviron/mediamtx.git
synced 2025-12-20 02:00:05 -08:00
this fixes IPv6 reliability issues and allows to receive upstream updates in a more linear way.
13 lines
175 B
Go
13 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
|
|
}
|