pull/861/head
Darien Raymond 2018-01-13 00:07:37 +01:00
parent ddb6437976
commit b5caea67ac
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169
3 changed files with 8 additions and 4 deletions

View File

@ -2,4 +2,6 @@ package dispatcher
import "v2ray.com/core/common/errors"
func newError(values ...interface{}) *errors.Error { return errors.New(values...).Path("App", "Dispatcher") }
func newError(values ...interface{}) *errors.Error {
return errors.New(values...).Path("App", "Dispatcher")
}

View File

@ -6,8 +6,8 @@ import (
"v2ray.com/core"
"v2ray.com/core/app/dispatcher"
. "v2ray.com/core/app/dns"
"v2ray.com/core/app/proxyman"
"v2ray.com/core/app/policy"
"v2ray.com/core/app/proxyman"
_ "v2ray.com/core/app/proxyman/outbound"
"v2ray.com/core/common/net"
"v2ray.com/core/common/serial"
@ -70,7 +70,7 @@ func TestUDPServer(t *testing.T) {
serial.ToTypedMessage(&policy.Config{}),
},
Outbound: []*core.OutboundHandlerConfig{
&core.OutboundHandlerConfig{
{
ProxySettings: serial.ToTypedMessage(&freedom.Config{}),
},
},

View File

@ -2,4 +2,6 @@ package proxyman
import "v2ray.com/core/common/errors"
func newError(values ...interface{}) *errors.Error { return errors.New(values...).Path("App", "Proxyman") }
func newError(values ...interface{}) *errors.Error {
return errors.New(values...).Path("App", "Proxyman")
}