mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-01 19:27:35 +03:00
15 lines
266 B
Go
15 lines
266 B
Go
//go:build !linux && !windows
|
|
|
|
package quic
|
|
|
|
import "syscall"
|
|
|
|
func setDF(syscall.RawConn) (bool, error) {
|
|
// no-op on unsupported platforms
|
|
return false, nil
|
|
}
|
|
|
|
func isMsgSizeErr(err error) bool {
|
|
// to be implemented for more specific platforms
|
|
return false
|
|
}
|