File: sys_nodf.go

package info (click to toggle)
irtt 0.9.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, forky, sid, trixie
  • size: 600 kB
  • sloc: sh: 60; makefile: 9
file content (11 lines) | stat: -rw-r--r-- 182 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
// +build !linux,!openbsd,!freebsd

package irtt

import (
	"net"
)

func setSockoptDF(conn *net.UDPConn, df DF) error {
	return Errorf(DFNotSupported, "DF sockopt not supported")
}