Files
gortsplib/pkg/readbuffer/read_buffer.go
2025-08-12 12:45:06 +02:00

14 lines
257 B
Go

// Package readbuffer contains a function to get the read buffer size of a socket.
package readbuffer
import (
"net"
"syscall"
)
// PacketConn is a packet connection.
type PacketConn interface {
net.PacketConn
SyscallConn() (syscall.RawConn, error)
}