| 123456789101112131415 |
- package repo
- import (
- "github.com/v2ray/v2ray-core/app"
- "github.com/v2ray/v2ray-core/proxy"
- "github.com/v2ray/v2ray-core/proxy/internal"
- )
- func CreateInboundConnectionHandler(name string, space app.Space, rawConfig []byte) (proxy.InboundHandler, error) {
- return internal.CreateInboundConnectionHandler(name, space, rawConfig)
- }
- func CreateOutboundConnectionHandler(name string, space app.Space, rawConfig []byte) (proxy.OutboundHandler, error) {
- return internal.CreateOutboundConnectionHandler(name, space, rawConfig)
- }
|