mirror of
https://github.com/aler9/gortsplib
synced 2025-09-26 19:21:20 +08:00
17 lines
273 B
Go
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
|
|
}
|