mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 11:57:39 +03:00
Add NetConn() net.Conn
support for cast
This commit is contained in:
parent
81c1436b69
commit
d6fe25153c
1 changed files with 9 additions and 0 deletions
|
@ -1,9 +1,15 @@
|
|||
package common
|
||||
|
||||
import "net"
|
||||
|
||||
type WithUpstream interface {
|
||||
Upstream() any
|
||||
}
|
||||
|
||||
type stdWithUpstreamNetConn interface {
|
||||
NetConn() net.Conn
|
||||
}
|
||||
|
||||
func Cast[T any](obj any) (T, bool) {
|
||||
if c, ok := obj.(T); ok {
|
||||
return c, true
|
||||
|
@ -11,6 +17,9 @@ func Cast[T any](obj any) (T, bool) {
|
|||
if u, ok := obj.(WithUpstream); ok {
|
||||
return Cast[T](u.Upstream())
|
||||
}
|
||||
if u, ok := obj.(stdWithUpstreamNetConn); ok {
|
||||
return Cast[T](u.NetConn())
|
||||
}
|
||||
return DefaultValue[T](), false
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue