conn_df.go 285 B

12345678910111213141516
  1. //go:build !linux && !windows
  2. // +build !linux,!windows
  3. package quic
  4. import "syscall"
  5. func setDF(rawConn syscall.RawConn) error {
  6. // no-op on unsupported platforms
  7. return nil
  8. }
  9. func isMsgSizeErr(err error) bool {
  10. // to be implemented for more specific platforms
  11. return false
  12. }