mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +03:00
Add common.Top func
This commit is contained in:
parent
0d98e82146
commit
7c05b33b2d
1 changed files with 10 additions and 0 deletions
|
@ -31,3 +31,13 @@ func MustCast[T any](obj any) T {
|
||||||
}
|
}
|
||||||
return value
|
return value
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func Top(obj any) any {
|
||||||
|
if u, ok := obj.(WithUpstream); ok {
|
||||||
|
return Top(u.Upstream())
|
||||||
|
}
|
||||||
|
if u, ok := obj.(stdWithUpstreamNetConn); ok {
|
||||||
|
return Top(u.NetConn())
|
||||||
|
}
|
||||||
|
return obj
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue