mirror of
https://github.com/SagerNet/sing-mux.git
synced 2025-04-01 19:17:36 +03:00
15 lines
249 B
Go
15 lines
249 B
Go
//go:build !linux
|
|
|
|
package mux
|
|
|
|
import (
|
|
"net"
|
|
|
|
E "github.com/sagernet/sing/common/exceptions"
|
|
)
|
|
|
|
const BrutalAvailable = false
|
|
|
|
func SetBrutalOptions(conn net.Conn, sendBPS uint64) error {
|
|
return E.New("TCP Brutal is only supported on Linux")
|
|
}
|