mirror of
https://github.com/cmz0228/hysteria-dev.git
synced 2025-06-15 16:59:52 +00:00
11 lines
138 B
Go
11 lines
138 B
Go
// +build !linux,!windows
|
|
|
|
package utils
|
|
|
|
import "net"
|
|
|
|
func SetDontFragment(conn *net.UDPConn) error {
|
|
// Not implemented
|
|
return nil
|
|
}
|