1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-28 14:56:33 -04:00
v2fly/common/protocol/headers.go

90 lines
1.6 KiB
Go
Raw Normal View History

2016-02-15 18:42:52 -05:00
package protocol
import (
2016-08-20 14:55:45 -04:00
v2net "v2ray.com/core/common/net"
"v2ray.com/core/common/uuid"
2016-02-15 18:42:52 -05:00
)
type RequestCommand byte
const (
RequestCommandTCP = RequestCommand(0x01)
RequestCommandUDP = RequestCommand(0x02)
)
2016-07-11 09:54:19 -04:00
type RequestOption byte
2016-02-15 18:42:52 -05:00
const (
2016-06-02 15:34:25 -04:00
RequestOptionChunkStream = RequestOption(0x01)
RequestOptionConnectionReuse = RequestOption(0x02)
2016-02-15 18:42:52 -05:00
)
2016-11-27 15:39:09 -05:00
func (v RequestOption) Has(option RequestOption) bool {
return (v & option) == option
2016-06-02 15:34:25 -04:00
}
2016-11-27 15:39:09 -05:00
func (v *RequestOption) Set(option RequestOption) {
*v = (*v | option)
2016-06-02 15:34:25 -04:00
}
2016-11-27 15:39:09 -05:00
func (v *RequestOption) Clear(option RequestOption) {
*v = (*v & (^option))
2016-02-27 10:41:21 -05:00
}
2016-12-07 11:32:40 -05:00
type Security byte
func (v Security) Is(t SecurityType) bool {
return v == Security(t)
}
2016-02-15 18:42:52 -05:00
type RequestHeader struct {
2016-12-07 11:32:40 -05:00
Version byte
User *User
Command RequestCommand
Option RequestOption
Security Security
Address v2net.Address
Port v2net.Port
2016-02-15 18:42:52 -05:00
}
2016-11-27 15:39:09 -05:00
func (v *RequestHeader) Destination() v2net.Destination {
if v.Command == RequestCommandUDP {
return v2net.UDPDestination(v.Address, v.Port)
2016-02-27 11:28:21 -05:00
}
2016-11-27 15:39:09 -05:00
return v2net.TCPDestination(v.Address, v.Port)
2016-02-27 11:28:21 -05:00
}
2016-06-02 15:34:25 -04:00
type ResponseOption byte
2016-07-11 09:54:19 -04:00
const (
2016-06-02 15:34:25 -04:00
ResponseOptionConnectionReuse = ResponseOption(1)
)
2016-11-27 15:39:09 -05:00
func (v *ResponseOption) Set(option ResponseOption) {
*v = (*v | option)
2016-06-02 15:34:25 -04:00
}
2016-11-27 15:39:09 -05:00
func (v ResponseOption) Has(option ResponseOption) bool {
return (v | option) == option
2016-06-02 15:34:25 -04:00
}
2016-11-27 15:39:09 -05:00
func (v *ResponseOption) Clear(option ResponseOption) {
*v = (*v & (^option))
2016-06-02 15:34:25 -04:00
}
2016-02-15 18:42:52 -05:00
type ResponseCommand interface{}
type ResponseHeader struct {
2016-06-02 15:34:25 -04:00
Option ResponseOption
2016-02-15 18:42:52 -05:00
Command ResponseCommand
}
2016-02-26 18:05:53 -05:00
type CommandSwitchAccount struct {
Host v2net.Address
Port v2net.Port
ID *uuid.UUID
2016-05-24 15:55:46 -04:00
AlterIds uint16
2016-09-17 18:41:21 -04:00
Level uint32
2016-02-26 18:05:53 -05:00
ValidMin byte
}