Add tcp-brutal support

This commit is contained in:
世界 2023-11-02 15:24:48 +08:00
parent 90a8306359
commit 6b086ed6bb
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
9 changed files with 280 additions and 61 deletions

15
brutal_stub.go Normal file
View file

@ -0,0 +1,15 @@
//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")
}