DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T a

⟦1f51f26e2⟧ TextFile

    Length: 1277 (0x4fd)
    Types: TextFile
    Names: »attribute.h«

Derivation

└─⟦3d0c2be1b⟧ Bits:30001254 ISODE-5.0 Tape
    └─⟦eba4602b1⟧ »./isode-5.0.tar.Z« 
        └─⟦d3ac74d73⟧ 
            └─⟦this⟧ »isode-5.0/doc/manual/attribute.h« 

TextFile

typedef struct {
	PE av_pe;                       /* Attribute value in ASN.1         */

	int     av_syntax;              /* Specifies the syntax of the      */
					/* attribute in "C" form            */
#define AV_UNKNOWN 0                    /* AV only in PE form   */
#define AV_CASEEXACTSTRING      1
#define AV_CASEIGNORESTRING     2
#define AV_ACL                  3
#define AV_ASN                  4
#define AV_NUMERICSTRING        5
#define AV_PRESENTATIONADDRESS  6
#define AV_NAMELIST             7
#define AV_SCHEMA               8
#define AV_UPDATE               9
#define AV_BOOLEAN              10
#define AV_INTEGER              11
#define AV_TIME                 12
#define AV_OID                  13
	union {
		char *                  av_str;
		struct acl *            av_acl;
		PE                      av_asn;
		char *                  av_num;
		struct PSAPaddr *       av_psap;
		struct dn_seq *         av_dnlist;
		struct tree_struct *    av_tree;
		struct edb_info *       av_update;
		char                    av_boolean;
		int                     av_integer;
		time_t                  av_time;
		OID                     av_oid;
		} av_un;
} AttributeValue;

typedef struct {
	OID                 at_oid;
	struct  oid_table * at_table;
} AttributeType;