mirror of https://github.com/v2ray/v2ray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
773 B
38 lines
773 B
package router
|
|
|
|
import (
|
|
"github.com/v2ray/v2ray-core/app"
|
|
"github.com/v2ray/v2ray-core/common"
|
|
v2net "github.com/v2ray/v2ray-core/common/net"
|
|
)
|
|
|
|
const (
|
|
APP_ID = app.ID(3)
|
|
)
|
|
|
|
type Router interface {
|
|
common.Releasable
|
|
TakeDetour(v2net.Destination) (string, error)
|
|
}
|
|
|
|
type RouterFactory interface {
|
|
Create(rawConfig interface{}, space app.Space) (Router, error)
|
|
}
|
|
|
|
var (
|
|
routerCache = make(map[string]RouterFactory)
|
|
)
|
|
|
|
func RegisterRouter(name string, factory RouterFactory) error {
|
|
// TODO: check name
|
|
routerCache[name] = factory
|
|
return nil
|
|
}
|
|
|
|
func CreateRouter(name string, rawConfig interface{}, space app.Space) (Router, error) {
|
|
if factory, found := routerCache[name]; found {
|
|
return factory.Create(rawConfig, space)
|
|
}
|
|
return nil, ErrorRouterNotFound
|
|
}
|