MCPcopy Index your code
hub / github.com/aceld/zinx / TLVDecoder

Struct TLVDecoder

zdecoder/tlvdecoder.go:62–66  ·  view source on GitHub ↗

表示TLV空包长度

Source from the content-addressed store, hash-verified

60const TLV_HEADER_SIZE = 8 //表示TLV空包长度
61
62type TLVDecoder struct {
63 Tag uint32 //T
64 Length uint32 //L
65 Value []byte //V
66}
67
68func NewTLVDecoder() ziface.IDecoder {
69 return &TLVDecoder{}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected