VLESS Reverse Proxy: Check burstObservatory immediately after inbound adds new reverse-mux to reverse-outbound (#5752)

Fixes https://github.com/XTLS/Xray-core/issues/5750

---------

Co-authored-by: RPRX <63339210+RPRX@users.noreply.github.com>
This commit is contained in:
风扇滑翔翼
2026-03-21 19:16:24 +08:00
committed by GitHub
parent 06dc4cf8bd
commit bb05684407
3 changed files with 18 additions and 2 deletions

View File

@@ -13,6 +13,11 @@ type Observatory interface {
GetObservation(ctx context.Context) (proto.Message, error)
}
type BurstObservatory interface {
Observatory
Check(tag []string)
}
func ObservatoryType() interface{} {
return (*Observatory)(nil)
}