forked from External/mediamtx
13 lines
198 B
Go
13 lines
198 B
Go
package rtmputils
|
|
|
|
import (
|
|
"net"
|
|
|
|
"github.com/notedit/rtmp/format/rtmp"
|
|
)
|
|
|
|
// ConnPair contains a RTMP connection and a net connection.
|
|
type ConnPair struct {
|
|
RConn *rtmp.Conn
|
|
NConn net.Conn
|
|
}
|