add tunnel feature for relay

This commit is contained in:
ginuerzh
2023-01-14 13:15:15 +08:00
parent 9b128534a0
commit 82cd924c86
20 changed files with 1000 additions and 45 deletions

37
registry/ingress.go Normal file
View File

@ -0,0 +1,37 @@
package registry
import (
"github.com/go-gost/core/ingress"
)
type ingressRegistry struct {
registry[ingress.Ingress]
}
func (r *ingressRegistry) Register(name string, v ingress.Ingress) error {
return r.registry.Register(name, v)
}
func (r *ingressRegistry) Get(name string) ingress.Ingress {
if name != "" {
return &ingressWrapper{name: name, r: r}
}
return nil
}
func (r *ingressRegistry) get(name string) ingress.Ingress {
return r.registry.Get(name)
}
type ingressWrapper struct {
name string
r *ingressRegistry
}
func (w *ingressWrapper) Get(host string) string {
v := w.r.get(w.name)
if v == nil {
return ""
}
return v.Get(host)
}