|
|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: T n
Length: 1221 (0x4c5)
Types: TextFile
Names: »name.h«
└─⟦3d0c2be1b⟧ Bits:30001254 ISODE-5.0 Tape
└─⟦eba4602b1⟧ »./isode-5.0.tar.Z«
└─⟦d3ac74d73⟧
└─⟦this⟧ »isode-5.0/doc/manual/name.h«
typedef struct rdncomp {/* RDN is sequence of attribute value assertions */
/* represents RelativeDistinguishedName */
AttributeType rdn_at;
AttributeValue rdn_av;
struct rdncomp *rdn_next;
} rdncomp, *RDN;
#define NULLRDN ((RDN) 0)
typedef struct dncomp { /* DN is sequence of RDNs
/* represents RDNSequence which is equivalent to DistinguishedName */
RDN dn_rdn;
struct dncomp *dn_parent;
} dncomp, *DN;
#define NULLDN ((DN) 0)
typedef struct avseqcomp { /* attribute may have multiple values */
/* respresents SET OF AttributeValue */
AttributeValue avseq_av;
Soundex *avseq_soundex;
/* Component NOT for use by DUA */
struct avseqcomp *avseq_next;
} avseqcomp, *AV_Sequence;
#define NULLAV ((AV_Sequence) 0)
typedef struct attrcomp { /* a sequence of attributes */
/* represents Attribute and SET OF Attribute */
AttributeType attr_type;
AV_Sequence attr_value;
struct attrcomp *attr_next;
struct acl_info *attr_acl; /* ACL is NOT for use by DUA */
/* this must be done by use of ACL attribute */
} attrcomp, *Attr_Sequence;
#define NULLATTR ((Attr_Sequence) 0)