summaryrefslogtreecommitdiff
path: root/source3/include/genparser_samba.h
diff options
context:
space:
mode:
Diffstat (limited to 'source3/include/genparser_samba.h')
-rw-r--r--source3/include/genparser_samba.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/source3/include/genparser_samba.h b/source3/include/genparser_samba.h
index 172ff2362c..213d51da87 100644
--- a/source3/include/genparser_samba.h
+++ b/source3/include/genparser_samba.h
@@ -55,4 +55,9 @@ const struct parse_struct pinfo_luid_attr_info[] = {
{"luid", 1, sizeof(LUID), offsetof(struct LUID_ATTR, luid), 0, NULL, 0, gen_dump_LUID, gen_parse_LUID},
{NULL, 0, 0, 0, 0, NULL, 0, NULL, NULL}};
+const struct parse_struct pinfo_data_blob_info[] = {
+{"length", 0, sizeof(int), offsetof(DATA_BLOB, length), 0, NULL, 0, gen_dump_int, gen_parse_int},
+{"data", 1, sizeof(char), offsetof(DATA_BLOB, data), 0, "length", 0, gen_dump_char, gen_parse_char},
+{NULL, 0, 0, 0, 0, NULL, 0, NULL, NULL}};
+
#endif /* _GENPARSER_SAMBA_H */