mirror of
https://github.com/cedar2025/hysteria.git
synced 2025-06-14 00:19:57 +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
|
|
}
|