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.
|
|
|
package proxy
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"v2ray.com/core/common"
|
|
|
|
"v2ray.com/core/common/errors"
|
|
|
|
)
|
|
|
|
|
|
|
|
func CreateInboundHandler(ctx context.Context, config interface{}) (InboundHandler, error) {
|
|
|
|
handler, err := common.CreateObject(ctx, config)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
switch h := handler.(type) {
|
|
|
|
case InboundHandler:
|
|
|
|
return h, nil
|
|
|
|
default:
|
|
|
|
return nil, errors.New("Proxy: Not a InboundHandler.")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func CreateOutboundHandler(ctx context.Context, config interface{}) (OutboundHandler, error) {
|
|
|
|
handler, err := common.CreateObject(ctx, config)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
switch h := handler.(type) {
|
|
|
|
case OutboundHandler:
|
|
|
|
return h, nil
|
|
|
|
default:
|
|
|
|
return nil, errors.New("Proxy: Not a OutboundHandler.")
|
|
|
|
}
|
|
|
|
}
|