mirror of
https://github.com/SagerNet/sing-quic.git
synced 2025-04-04 12:27:38 +03:00
Update the behavior of ignore_client_bandwidth
This commit is contained in:
parent
06d01d20a7
commit
da0a8689f2
1 changed files with 9 additions and 3 deletions
|
@ -188,7 +188,7 @@ func (s *serverSession[U]) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
||||||
protocol.AuthResponseToHeader(w.Header(), protocol.AuthResponse{
|
protocol.AuthResponseToHeader(w.Header(), protocol.AuthResponse{
|
||||||
UDPEnabled: !s.udpDisabled,
|
UDPEnabled: !s.udpDisabled,
|
||||||
Rx: s.receiveBPS,
|
Rx: s.receiveBPS,
|
||||||
RxAuto: s.ignoreClientBandwidth,
|
RxAuto: s.receiveBPS == 0 && s.ignoreClientBandwidth,
|
||||||
})
|
})
|
||||||
w.WriteHeader(protocol.StatusAuthOK)
|
w.WriteHeader(protocol.StatusAuthOK)
|
||||||
return
|
return
|
||||||
|
@ -201,7 +201,12 @@ func (s *serverSession[U]) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
||||||
}
|
}
|
||||||
s.authUser = user
|
s.authUser = user
|
||||||
s.authenticated = true
|
s.authenticated = true
|
||||||
if !s.ignoreClientBandwidth && request.Rx > 0 {
|
var rxAuto bool
|
||||||
|
if s.receiveBPS > 0 && s.ignoreClientBandwidth && request.Rx == 0 {
|
||||||
|
s.logger.Debug("process connection from ", r.RemoteAddr, ": BBR disabled by server")
|
||||||
|
s.masqueradeHandler.ServeHTTP(w, r)
|
||||||
|
return
|
||||||
|
} else if !(s.receiveBPS == 0 && s.ignoreClientBandwidth) && request.Rx > 0 {
|
||||||
rx := request.Rx
|
rx := request.Rx
|
||||||
if s.sendBPS > 0 && rx > s.sendBPS {
|
if s.sendBPS > 0 && rx > s.sendBPS {
|
||||||
rx = s.sendBPS
|
rx = s.sendBPS
|
||||||
|
@ -217,11 +222,12 @@ func (s *serverSession[U]) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
||||||
congestion.ByteCount(s.quicConn.Config().InitialPacketSize),
|
congestion.ByteCount(s.quicConn.Config().InitialPacketSize),
|
||||||
congestion.ByteCount(congestion_meta1.InitialCongestionWindow),
|
congestion.ByteCount(congestion_meta1.InitialCongestionWindow),
|
||||||
))
|
))
|
||||||
|
rxAuto = true
|
||||||
}
|
}
|
||||||
protocol.AuthResponseToHeader(w.Header(), protocol.AuthResponse{
|
protocol.AuthResponseToHeader(w.Header(), protocol.AuthResponse{
|
||||||
UDPEnabled: !s.udpDisabled,
|
UDPEnabled: !s.udpDisabled,
|
||||||
Rx: s.receiveBPS,
|
Rx: s.receiveBPS,
|
||||||
RxAuto: s.ignoreClientBandwidth,
|
RxAuto: rxAuto,
|
||||||
})
|
})
|
||||||
w.WriteHeader(protocol.StatusAuthOK)
|
w.WriteHeader(protocol.StatusAuthOK)
|
||||||
if s.ctx.Done() != nil {
|
if s.ctx.Done() != nil {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue