mirror of
https://github.com/samba-team/samba.git
synced 2025-02-05 21:57:51 +03:00
7e851ada55
LDB does not know about nor process the AD schema, so it makes no sense to have this tool there. I've been changing it anyway, to use a common schema manipulation library, and will enhance these links in the future. Andrew Bartlett (This used to be commit c7704805b9a3541e4c8768278c8289b0aa6ed5e3)
11 lines
298 B
C
11 lines
298 B
C
struct syntax_map {
|
|
const char *Standard_OID;
|
|
const char *AD_OID;
|
|
const char *equality;
|
|
const char *substring;
|
|
const char *comment;
|
|
};
|
|
|
|
const struct syntax_map *find_syntax_map_by_ad_oid(const char *ad_oid);
|
|
const struct syntax_map *find_syntax_map_by_standard_oid(const char *standard_oid);
|