mirror of
https://github.com/aler9/gortsplib
synced 2025-09-28 20:12:18 +08:00
11 lines
248 B
Go
11 lines
248 B
Go
//go:build !linux && !windows
|
|
|
|
package readbuffer
|
|
|
|
import "fmt"
|
|
|
|
// ReadBuffer returns the read buffer size.
|
|
func ReadBuffer(pc PacketConn) (int, error) {
|
|
return 0, fmt.Errorf("read buffer size is unimplemented on the current operating system")
|
|
}
|