mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-02 17:27:50 -04:00
16 lines
548 B
Go
16 lines
548 B
Go
|
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.InboundConnectionHandler, error) {
|
||
|
return internal.CreateInboundConnectionHandler(name, space, rawConfig)
|
||
|
}
|
||
|
|
||
|
func CreateOutboundConnectionHandler(name string, space app.Space, rawConfig []byte) (proxy.OutboundConnectionHandler, error) {
|
||
|
return internal.CreateOutboundConnectionHandler(name, space, rawConfig)
|
||
|
}
|