1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-29 02:35:23 +00:00
v2fly/common/protocol/headers.go

119 lines
2.4 KiB
Go
Raw Normal View History

2016-02-15 23:42:52 +00:00
package protocol
import (
2016-12-11 13:58:53 +00:00
"runtime"
2017-01-13 23:27:45 +00:00
"v2ray.com/core/common/net"
2016-08-20 18:55:45 +00:00
"v2ray.com/core/common/uuid"
2016-02-15 23:42:52 +00:00
)
2017-02-20 10:25:05 +00:00
// RequestCommand is a custom command in a proxy request.
2016-02-15 23:42:52 +00:00
type RequestCommand byte
const (
RequestCommandTCP = RequestCommand(0x01)
RequestCommandUDP = RequestCommand(0x02)
)
2016-12-21 11:53:31 +00:00
// RequestOption is the options of a request.
2016-07-11 13:54:19 +00:00
type RequestOption byte
2016-02-15 23:42:52 +00:00
const (
2016-12-21 11:53:31 +00:00
// RequestOptionChunkStream indicates request payload is chunked. Each chunk consists of length, authentication and payload.
RequestOptionChunkStream = RequestOption(0x01)
// RequestOptionConnectionReuse indicates client side expects to reuse the connection.
2016-06-02 19:34:25 +00:00
RequestOptionConnectionReuse = RequestOption(0x02)
2016-12-21 11:53:31 +00:00
2017-02-14 13:16:43 +00:00
RequestOptionChunkMasking = RequestOption(0x04)
2016-02-15 23:42:52 +00:00
)
2016-11-27 20:39:09 +00:00
func (v RequestOption) Has(option RequestOption) bool {
return (v & option) == option
2016-06-02 19:34:25 +00:00
}
2016-11-27 20:39:09 +00:00
func (v *RequestOption) Set(option RequestOption) {
*v = (*v | option)
2016-06-02 19:34:25 +00:00
}
2016-11-27 20:39:09 +00:00
func (v *RequestOption) Clear(option RequestOption) {
*v = (*v & (^option))
2016-02-27 15:41:21 +00:00
}
2016-12-07 16:32:40 +00:00
type Security byte
func (v Security) Is(t SecurityType) bool {
return v == Security(t)
}
2016-12-13 09:45:21 +00:00
func NormSecurity(s Security) Security {
if s.Is(SecurityType_UNKNOWN) {
return Security(SecurityType_LEGACY)
}
return s
}
2016-02-15 23:42:52 +00:00
type RequestHeader struct {
2016-12-07 16:32:40 +00:00
Version byte
Command RequestCommand
Option RequestOption
Security Security
2017-01-13 23:27:45 +00:00
Port net.Port
Address net.Address
2016-12-21 14:37:16 +00:00
User *User
2016-02-15 23:42:52 +00:00
}
2017-01-13 23:27:45 +00:00
func (v *RequestHeader) Destination() net.Destination {
2016-11-27 20:39:09 +00:00
if v.Command == RequestCommandUDP {
2017-01-13 23:27:45 +00:00
return net.UDPDestination(v.Address, v.Port)
2016-02-27 16:28:21 +00:00
}
2017-01-13 23:27:45 +00:00
return net.TCPDestination(v.Address, v.Port)
2016-02-27 16:28:21 +00:00
}
2016-06-02 19:34:25 +00:00
type ResponseOption byte
2016-07-11 13:54:19 +00:00
const (
2016-12-21 11:53:31 +00:00
ResponseOptionConnectionReuse = ResponseOption(0x01)
2016-06-02 19:34:25 +00:00
)
2016-11-27 20:39:09 +00:00
func (v *ResponseOption) Set(option ResponseOption) {
*v = (*v | option)
2016-06-02 19:34:25 +00:00
}
2016-11-27 20:39:09 +00:00
func (v ResponseOption) Has(option ResponseOption) bool {
2016-12-12 21:46:15 +00:00
return (v & option) == option
2016-06-02 19:34:25 +00:00
}
2016-11-27 20:39:09 +00:00
func (v *ResponseOption) Clear(option ResponseOption) {
*v = (*v & (^option))
2016-06-02 19:34:25 +00:00
}
2016-02-15 23:42:52 +00:00
type ResponseCommand interface{}
type ResponseHeader struct {
2016-06-02 19:34:25 +00:00
Option ResponseOption
2016-02-15 23:42:52 +00:00
Command ResponseCommand
}
2016-02-26 23:05:53 +00:00
type CommandSwitchAccount struct {
2017-01-13 23:27:45 +00:00
Host net.Address
Port net.Port
2016-02-26 23:05:53 +00:00
ID *uuid.UUID
2016-05-24 19:55:46 +00:00
AlterIds uint16
2016-09-17 22:41:21 +00:00
Level uint32
2016-02-26 23:05:53 +00:00
ValidMin byte
}
2016-12-11 13:58:53 +00:00
func (v *SecurityConfig) AsSecurity() Security {
if v == nil {
return Security(SecurityType_LEGACY)
}
if v.Type == SecurityType_AUTO {
if runtime.GOARCH == "amd64" || runtime.GOARCH == "s390x" {
return Security(SecurityType_AES128_GCM)
}
return Security(SecurityType_CHACHA20_POLY1305)
}
2016-12-13 09:45:21 +00:00
return NormSecurity(Security(v.Type))
2016-12-11 13:58:53 +00:00
}