mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-04 09:17:32 -05:00
rename RegisterApp to Register
This commit is contained in:
parent
c224f67666
commit
a37819c330
@ -29,7 +29,7 @@ func (this *contextedPacketDispatcher) DispatchToOutbound(destination v2net.Dest
|
|||||||
}
|
}
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
app.RegisterApp(APP_ID, func(context app.Context, obj interface{}) interface{} {
|
app.Register(APP_ID, func(context app.Context, obj interface{}) interface{} {
|
||||||
packetDispatcher := obj.(packetDispatcherWithContext)
|
packetDispatcher := obj.(packetDispatcherWithContext)
|
||||||
return &contextedPacketDispatcher{
|
return &contextedPacketDispatcher{
|
||||||
context: context,
|
context: context,
|
||||||
|
@ -35,7 +35,7 @@ func (this *contextedDnsCache) Add(domain string, ip net.IP) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
app.RegisterApp(APP_ID, func(context app.Context, obj interface{}) interface{} {
|
app.Register(APP_ID, func(context app.Context, obj interface{}) interface{} {
|
||||||
dcContext := obj.(dnsCacheWithContext)
|
dcContext := obj.(dnsCacheWithContext)
|
||||||
return &contextedDnsCache{
|
return &contextedDnsCache{
|
||||||
context: context,
|
context: context,
|
||||||
|
@ -27,7 +27,7 @@ func (this *inboundHandlerManagerWithContextImpl) GetHandler(tag string) (proxy.
|
|||||||
}
|
}
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
app.RegisterApp(APP_ID_INBOUND_MANAGER, func(context app.Context, obj interface{}) interface{} {
|
app.Register(APP_ID_INBOUND_MANAGER, func(context app.Context, obj interface{}) interface{} {
|
||||||
manager := obj.(inboundHandlerManagerWithContext)
|
manager := obj.(inboundHandlerManagerWithContext)
|
||||||
return &inboundHandlerManagerWithContextImpl{
|
return &inboundHandlerManagerWithContextImpl{
|
||||||
context: context,
|
context: context,
|
||||||
|
@ -20,7 +20,7 @@ var (
|
|||||||
metadataCache = make(map[ID]ForContextCreator)
|
metadataCache = make(map[ID]ForContextCreator)
|
||||||
)
|
)
|
||||||
|
|
||||||
func RegisterApp(id ID, creator ForContextCreator) {
|
func Register(id ID, creator ForContextCreator) {
|
||||||
// TODO: check id
|
// TODO: check id
|
||||||
metadataCache[id] = creator
|
metadataCache[id] = creator
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user