10 lines
138 B
Go
10 lines
138 B
Go
// +build !linux,!windows
|
|
|
|
package utils
|
|
|
|
import "net"
|
|
|
|
func SetDontFragment(conn *net.UDPConn) error {
|
|
// Not implemented
|
|
return nil
|
|
}
|