mirror of
https://github.com/aler9/gortsplib
synced 2025-09-28 20:12:18 +08:00

* switch from v4 to v5 * remove deprecated entities * remove "2" suffix from entities * rename TransportProtocol into Protocol
15 lines
243 B
Go
15 lines
243 B
Go
// Package multicast contains multicast connections.
|
|
package multicast
|
|
|
|
import (
|
|
"net"
|
|
"syscall"
|
|
)
|
|
|
|
// Conn is a Multicast connection.
|
|
type Conn interface {
|
|
net.PacketConn
|
|
SetReadBuffer(int) error
|
|
SyscallConn() (syscall.RawConn, error)
|
|
}
|