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.
25 lines
461 B
25 lines
461 B
9 years ago
|
package router
|
||
|
|
||
|
import (
|
||
|
v2net "github.com/v2ray/v2ray-core/common/net"
|
||
|
"github.com/v2ray/v2ray-core/config"
|
||
|
)
|
||
|
|
||
|
type Router interface {
|
||
|
TakeDetour(v2net.Packet) (config.ConnectionTag, error)
|
||
|
}
|
||
|
|
||
|
type RouterFactory interface {
|
||
|
Create(rawConfig interface{}) (Router, error)
|
||
|
}
|
||
|
|
||
|
var (
|
||
|
routerCache = make(map[string]RouterFactory)
|
||
|
)
|
||
|
|
||
|
func RegisterRouter(name string, factory RouterFactory) error {
|
||
|
// TODO: check name
|
||
|
routerCache[name] = factory
|
||
|
return nil
|
||
|
}
|