I'm working on a protocol handling data exchange that somehow a little complex, then I found TLV is the one I need. Is there a formal way to read and write TLV in erlang? or some lib / code example handling this? thanks.
Any lib or formal method handling TLV in Erlang?
408 views Asked by Jason Xu At
2
There are 2 answers
0
On
I haven't actually used it, but how about this one: https://github.com/essiene/smpp34pdu/blob/master/src/tlv.erl
The "default" in Erlang is LTV rather than TLV, but it is rather easy to handle:
You will need passive sockets to get this to work, but it is rather easy to do. If you have the freedom to pick your format, the LTV encoding is better because you can then put the socket in
{active, once}
mode which means the underlying layer decodes stuff for you.