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