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