summaryrefslogtreecommitdiff
path: root/source4/dsdb/schema/schema.h
diff options
context:
space:
mode:
Diffstat (limited to 'source4/dsdb/schema/schema.h')
-rw-r--r--source4/dsdb/schema/schema.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/source4/dsdb/schema/schema.h b/source4/dsdb/schema/schema.h
index 4911407a21..051f531a52 100644
--- a/source4/dsdb/schema/schema.h
+++ b/source4/dsdb/schema/schema.h
@@ -23,6 +23,14 @@
#ifndef _DSDB_SCHEMA_H
#define _DSDB_SCHEMA_H
+struct dsdb_syntax {
+ const char *name;
+ const char *ldap_oid;
+ uint32_t oMSyntax;
+ struct ldb_val oMObjectClass;
+ const char *attributeSyntax_oid;
+};
+
struct dsdb_attribute {
struct dsdb_attribute *prev, *next;
@@ -60,6 +68,9 @@ struct dsdb_attribute {
BOOL isEphemeral;
BOOL isDefunct;
BOOL systemOnly;
+
+ /* internal stuff */
+ const struct dsdb_syntax *syntax;
};
struct dsdb_class {