Add NetConn() net.Conn support for cast

This commit is contained in:
世界 2023-10-08 12:00:00 +08:00
parent 81c1436b69
commit d6fe25153c
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -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
}