mirror of
https://github.com/SagerNet/sing-mux.git
synced 2025-04-03 20:07:41 +03:00
Add tcp-brutal support
This commit is contained in:
parent
90a8306359
commit
6b086ed6bb
9 changed files with 280 additions and 61 deletions
15
brutal_stub.go
Normal file
15
brutal_stub.go
Normal 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")
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue