Files
gortsplib/conn_transport.go
2025-09-17 21:30:11 +02:00

17 lines
273 B
Go

package gortsplib
// Tunnel is a tunneling method.
type Tunnel int
// tunneling methods.
const (
TunnelNone Tunnel = iota
TunnelHTTP
TunnelWebSocket
)
// ConnTransport contains details about the transport of a connection.
type ConnTransport struct {
Tunnel Tunnel
}