mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-01-02 23:47:07 -05:00
generalized protocol interface
This commit is contained in:
parent
cbfc9adb95
commit
8daa427daf
27
common/protocol/encoding.go
Normal file
27
common/protocol/encoding.go
Normal file
@ -0,0 +1,27 @@
|
||||
package protocol
|
||||
|
||||
import (
|
||||
"io"
|
||||
|
||||
"github.com/v2ray/v2ray-core/common/alloc"
|
||||
)
|
||||
|
||||
type RequestEncoder interface {
|
||||
EncodeHeader(*RequestHeader) *alloc.Buffer
|
||||
EncodeBody(io.Writer) io.Writer
|
||||
}
|
||||
|
||||
type RequestDecoder interface {
|
||||
DecodeHeader(io.Reader) *RequestHeader
|
||||
DecodeBody(io.Reader) io.Reader
|
||||
}
|
||||
|
||||
type ResponseEncoder interface {
|
||||
EncodeHeader(*ResponseHeader) *alloc.Buffer
|
||||
EncodeBody(io.Writer) io.Writer
|
||||
}
|
||||
|
||||
type ResponseDecoder interface {
|
||||
DecodeHeader(io.Reader) *ResponseHeader
|
||||
DecodeBody(io.Reader) io.Reader
|
||||
}
|
33
common/protocol/headers.go
Normal file
33
common/protocol/headers.go
Normal file
@ -0,0 +1,33 @@
|
||||
package protocol
|
||||
|
||||
import (
|
||||
v2net "github.com/v2ray/v2ray-core/common/net"
|
||||
)
|
||||
|
||||
type RequestCommand byte
|
||||
|
||||
const (
|
||||
RequestCommandTCP = RequestCommand(0x01)
|
||||
RequestCommandUDP = RequestCommand(0x02)
|
||||
)
|
||||
|
||||
type RequestOption byte
|
||||
|
||||
const (
|
||||
RequestOptionChunkStream = RequestOption(0x01)
|
||||
)
|
||||
|
||||
type RequestHeader struct {
|
||||
Version byte
|
||||
User *User
|
||||
Command RequestCommand
|
||||
Option RequestOption
|
||||
Address v2net.Address
|
||||
Port v2net.Port
|
||||
}
|
||||
|
||||
type ResponseCommand interface{}
|
||||
|
||||
type ResponseHeader struct {
|
||||
Command ResponseCommand
|
||||
}
|
Loading…
Reference in New Issue
Block a user