mirror of
https://github.com/aler9/gortsplib
synced 2025-09-27 03:25:52 +08:00
9 lines
221 B
Go
9 lines
221 B
Go
package gortsplib
|
|
|
|
// ClientTransport contains details about the client transport.
|
|
type ClientTransport struct {
|
|
Conn ConnTransport
|
|
// present only when SETUP has been called at least once.
|
|
Session *SessionTransport
|
|
}
|