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.
17 lines
436 B
17 lines
436 B
8 years ago
|
package proxy
|
||
|
|
||
|
import (
|
||
|
"v2ray.com/core/app"
|
||
|
v2net "v2ray.com/core/common/net"
|
||
|
)
|
||
|
|
||
|
type InboundHandlerFactory interface {
|
||
|
StreamCapability() v2net.NetworkList
|
||
|
Create(space app.Space, config interface{}, meta *InboundHandlerMeta) (InboundHandler, error)
|
||
|
}
|
||
|
|
||
|
type OutboundHandlerFactory interface {
|
||
|
StreamCapability() v2net.NetworkList
|
||
|
Create(space app.Space, config interface{}, meta *OutboundHandlerMeta) (OutboundHandler, error)
|
||
|
}
|