hysteria/pkg/utils/df_stub.go
2021-04-19 20:52:50 -07:00

11 lines
138 B
Go

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