mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-09-16 15:17:14 +00:00
d9c7c76fb0
* fix(limit-ip): leave a reverse client out of the temporary disconnect The LIMIT_IP cycle removes the client and adds it back 100 ms later. For a vless client carrying a reverse config that is not reversible: RemoveUser calls RemoveReverse and deletes the client's outbound handler, while the account added back is built without the reverse field, so the tunnel stays down until Xray restarts and the core's forward-proxy guard for that client no longer fires (proxy/vless/inbound/inbound.go:245 and :542-544 at the pinned core). The cycle now skips such a client and says so, instead of trading a limit violation for a tunnel that needs a restart to come back. TestDisconnectClientTemporarilySkipsReverseClient fails without this -- watched red, the client is removed and re-added -- and asserts the skip is logged rather than silent. * style(limit-ip): keep the reverse-client comment within the 2-line cap The block explaining why a reverse client is skipped was three lines, against the rule this repo sets for committed Go comments; the same why fits in two.