mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-04 09:17:32 -05:00
20 lines
513 B
Go
20 lines
513 B
Go
package internal
|
|
|
|
import (
|
|
"github.com/v2ray/v2ray-core/app"
|
|
"github.com/v2ray/v2ray-core/proxy"
|
|
)
|
|
|
|
type InboundHandlerManagerWithContext interface {
|
|
GetHandler(context app.Context, tag string) (proxy.InboundConnectionHandler, int)
|
|
}
|
|
|
|
type inboundHandlerManagerWithContext struct {
|
|
context app.Context
|
|
manager InboundHandlerManagerWithContext
|
|
}
|
|
|
|
func (this *inboundHandlerManagerWithContext) GetHandler(tag string) (proxy.InboundConnectionHandler, int) {
|
|
return this.manager.GetHandler(this.context, tag)
|
|
}
|