summaryrefslogtreecommitdiff
path: root/lib/util/samba_util.h
diff options
context:
space:
mode:
authorKai Blin <kai@samba.org>2013-01-18 09:44:02 +0100
committerKai Blin <kai@samba.org>2013-05-18 10:58:05 +0200
commit30cba0d201fc91cff30b6ea2bd11979930650169 (patch)
tree7fe5d47b9994b087006d42ee9f0dc759e0675e80 /lib/util/samba_util.h
parent1c9ef675d1a44fb9b0d599f96391abf1e21981c1 (diff)
downloadsamba-30cba0d201fc91cff30b6ea2bd11979930650169.tar.gz
samba-30cba0d201fc91cff30b6ea2bd11979930650169.tar.bz2
samba-30cba0d201fc91cff30b6ea2bd11979930650169.zip
debug: Add ability to dump_data per debug class
Signed-off-by: Kai Blin <kai@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'lib/util/samba_util.h')
-rw-r--r--lib/util/samba_util.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/util/samba_util.h b/lib/util/samba_util.h
index 6a4373e424..89aa9aa7d8 100644
--- a/lib/util/samba_util.h
+++ b/lib/util/samba_util.h
@@ -693,6 +693,14 @@ _PUBLIC_ void dump_data(int level, const uint8_t *buf,int len);
/**
* Write dump of binary data to the log file.
*
+ * The data is only written if the log level is at least level for
+ * debug class dbgc_class.
+ */
+_PUBLIC_ void dump_data_dbgc(int dbgc_class, int level, const uint8_t *buf, int len);
+
+/**
+ * Write dump of binary data to the log file.
+ *
* The data is only written if the log level is at least level.
* 16 zero bytes in a row are omitted
*/