add: proper indentation when printing TLV objects

This commit is contained in:
pwpiwi 2017-11-10 21:39:10 +01:00
commit 43912d6349
7 changed files with 43 additions and 25 deletions

View file

@ -10,9 +10,9 @@
#include "emvcore.h"
static bool print_cb(void *data, const struct tlv *tlv) {
emv_tag_dump(tlv, stdout);
dump_buffer(tlv->value, tlv->len, stdout);
static bool print_cb(void *data, const struct tlv *tlv, int level) {
emv_tag_dump(tlv, stdout, level);
dump_buffer(tlv->value, tlv->len, stdout, level);
return true;
}
@ -23,7 +23,7 @@ void TLVPrintFromBuffer(uint8_t *data, int datalen) {
if (t) {
PrintAndLog("TLV decoded:");
tlvdb_visit(t, print_cb, NULL);
tlvdb_visit(t, print_cb, NULL, 0);
tlvdb_free(t);
} else {
PrintAndLog("TLV ERROR: Can't parse response as TLV tree.");