mirror of
https://github.com/samba-team/samba.git
synced 2024-12-27 03:21:53 +03:00
7de75a991b
Add attribute syntax mapping to the existing OpenLDAP -> AD tool.
Andrew Bartlett
(This used to be commit ba1c652bae
)
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);
|