v2ray-core/app/handlers.go

10 lines
165 B
Go
Raw Normal View History

package app
import (
2016-01-02 22:32:18 +00:00
"github.com/v2ray/v2ray-core/proxy"
)
type InboundHandlerManager interface {
2016-01-02 22:32:18 +00:00
GetHandler(tag string) (proxy.InboundConnectionHandler, int)
}