|
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: 1809 (0x711) Types: TextFile Names: »name.h«
└─⟦3d0c2be1b⟧ Bits:30001254 ISODE-5.0 Tape └─⟦eba4602b1⟧ »./isode-5.0.tar.Z« └─⟦d3ac74d73⟧ └─⟦this⟧ »isode-5.0/h/quipu/name.h«
/* name.h - */ /* * $Header: /f/osi/h/quipu/RCS/name.h,v 6.0 89/03/18 23:33:00 mrose Rel $ * * * $Log: name.h,v $ * Revision 6.0 89/03/18 23:33:00 mrose * Release 5.0 * */ /* * NOTICE * * Acquisition, use, and distribution of this module and related * materials are subject to the restrictions of a license agreement. * Consult the Preface in the User's Manual for the full terms of * this agreement. * */ #ifndef QUIPUNAME #define QUIPUNAME #include "quipu/attr.h" typedef struct ava { /* represents AttributeValueAssertion */ AttributeType ava_type; AttributeValue ava_value; }ava, AVA; 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) #define rdn_comp_alloc() (RDN) smalloc(sizeof(rdncomp)) #define rdn_comp_fill(x,y,z); x->rdn_at = y ; x -> rdn_av = z RDN rdn_comp_new (); RDN rdn_comp_cpy (); RDN str2rdn(); RDN rdn_cpy (); RDN rdn_merge (); 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) #define dn_comp_alloc() (DN) smalloc(sizeof(dncomp)) #define dn_comp_print(x,y,z) if (y!=NULLDN) rdn_print(x,y->dn_rdn,z) #define dn_comp_fill(x,y) x -> dn_rdn = y #define dn_comp_cmp(x,y) ((rdn_cmp (x->dn_rdn ,y->dn_rdn) == OK) ? OK : NOTOK ) DN dn_comp_new (); DN dn_comp_cpy (); DN dn_cpy (); DN str2dn (); #endif