1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-26 13:56:12 -04:00
This commit is contained in:
v2ray 2016-02-05 22:04:43 +01:00
parent 76b0db2016
commit 25dfa66822
4 changed files with 4 additions and 4 deletions

View File

@ -32,7 +32,7 @@ const (
)
// VMessRequest implements the request message of VMess protocol. It only contains the header of a
// request message. The data part will be handled by conection handler directly, in favor of data
// request message. The data part will be handled by connection handler directly, in favor of data
// streaming.
type VMessRequest struct {
Version byte

View File

@ -11,7 +11,7 @@ import (
"github.com/v2ray/v2ray-core/common/log"
"github.com/v2ray/v2ray-core/shell/point"
// The following are neccesary as they register handlers in their init functions.
// The following are necessary as they register handlers in their init functions.
_ "github.com/v2ray/v2ray-core/proxy/blackhole"
_ "github.com/v2ray/v2ray-core/proxy/dokodemo"
_ "github.com/v2ray/v2ray-core/proxy/freedom"

View File

@ -8,7 +8,7 @@ import (
"github.com/v2ray/v2ray-core/common/log"
"github.com/v2ray/v2ray-core/shell/point"
// The following are neccesary as they register handlers in their init functions.
// The following are necessary as they register handlers in their init functions.
_ "github.com/v2ray/v2ray-core/proxy/blackhole"
_ "github.com/v2ray/v2ray-core/proxy/dokodemo"
_ "github.com/v2ray/v2ray-core/proxy/freedom"

View File

@ -29,7 +29,7 @@ type InboundRay interface {
InboundOutput() <-chan *alloc.Buffer
}
// Ray is an internal tranport channel bewteen inbound and outbound connection.
// Ray is an internal tranport channel between inbound and outbound connection.
type Ray interface {
InboundRay
OutboundRay