1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-08-25 05:44:16 -04:00
v2fly/proxy/internal/creator.go

10 lines
342 B
Go
Raw Normal View History

package internal
import (
"github.com/v2ray/v2ray-core/app"
2016-01-02 17:32:18 -05:00
"github.com/v2ray/v2ray-core/proxy"
)
2016-01-02 17:32:18 -05:00
type InboundConnectionHandlerCreator func(space app.Space, config interface{}) (proxy.InboundConnectionHandler, error)
type OutboundConnectionHandlerCreator func(space app.Space, config interface{}) (proxy.OutboundConnectionHandler, error)