2016-12-15 09:46:20 -05:00
|
|
|
package proxy
|
2016-01-02 17:08:36 -05:00
|
|
|
|
|
|
|
import (
|
2017-01-12 18:56:21 -05:00
|
|
|
"context"
|
|
|
|
|
2016-08-20 14:55:45 -04:00
|
|
|
"v2ray.com/core/common"
|
2016-01-02 17:08:36 -05:00
|
|
|
)
|
|
|
|
|
2017-01-26 14:57:18 -05:00
|
|
|
func CreateInboundHandler(ctx context.Context, config interface{}) (Inbound, error) {
|
2017-01-12 18:56:21 -05:00
|
|
|
handler, err := common.CreateObject(ctx, config)
|
|
|
|
if err != nil {
|
2017-07-25 17:12:54 -04:00
|
|
|
return nil, newError("failed to create inbound handler").Base(err)
|
2016-01-02 17:08:36 -05:00
|
|
|
}
|
2017-01-12 18:56:21 -05:00
|
|
|
switch h := handler.(type) {
|
2017-01-26 14:57:18 -05:00
|
|
|
case Inbound:
|
2017-01-12 18:56:21 -05:00
|
|
|
return h, nil
|
|
|
|
default:
|
2017-04-09 09:04:04 -04:00
|
|
|
return nil, newError("not a InboundHandler")
|
2016-01-02 17:08:36 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-26 14:57:18 -05:00
|
|
|
func CreateOutboundHandler(ctx context.Context, config interface{}) (Outbound, error) {
|
2017-01-12 18:56:21 -05:00
|
|
|
handler, err := common.CreateObject(ctx, config)
|
|
|
|
if err != nil {
|
2017-07-25 17:12:54 -04:00
|
|
|
return nil, newError("failed to create outbound handler").Base(err)
|
2016-01-02 17:08:36 -05:00
|
|
|
}
|
2017-01-12 18:56:21 -05:00
|
|
|
switch h := handler.(type) {
|
2017-01-26 14:57:18 -05:00
|
|
|
case Outbound:
|
2017-01-12 18:56:21 -05:00
|
|
|
return h, nil
|
|
|
|
default:
|
2017-04-09 09:04:04 -04:00
|
|
|
return nil, newError("not a OutboundHandler")
|
2016-01-02 17:08:36 -05:00
|
|
|
}
|
|
|
|
}
|