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