diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-06-20 04:56:43 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:18:35 -0500 |
commit | bd7a474b1967423711ff93c0080ce0f89270e3f9 (patch) | |
tree | b78606ca4efbf1f298fbb3ae525ed5dd2c0a205d /source4/lib/ldb/include/ldb_private.h | |
parent | 6b4f3e17f0e62499e630b8822c807d692b424c23 (diff) | |
download | samba-bd7a474b1967423711ff93c0080ce0f89270e3f9.tar.gz samba-bd7a474b1967423711ff93c0080ce0f89270e3f9.tar.bz2 samba-bd7a474b1967423711ff93c0080ce0f89270e3f9.zip |
r7776: add a method for getting arbitrary opaque data into a ldb context, for use by backends.
Currently only EventContext is used in this way.
(This used to be commit 9fa21b245843371f7777682ee4e5b98e2925b4d0)
Diffstat (limited to 'source4/lib/ldb/include/ldb_private.h')
-rw-r--r-- | source4/lib/ldb/include/ldb_private.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/source4/lib/ldb/include/ldb_private.h b/source4/lib/ldb/include/ldb_private.h index 92588e13fd..8f91b0d9b1 100644 --- a/source4/lib/ldb/include/ldb_private.h +++ b/source4/lib/ldb/include/ldb_private.h @@ -77,6 +77,13 @@ struct ldb_context { /* debugging operations */ struct ldb_debug_ops debug_ops; + + /* backend specific opaque parameters */ + struct ldb_opaque { + struct ldb_opaque *next; + const char *name; + void *value; + } *opaque; }; /* the modules init function */ |