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 b

⟦dcf208ff7⟧ TextFile

    Length: 1676 (0x68c)
    Types: TextFile
    Names: »bind.h«

Derivation

└─⟦2d1937cfd⟧ Bits:30007241 EUUGD22: P.P 5.0
    └─⟦35176feda⟧ »EurOpenD22/isode/isode-6.tar.Z« 
        └─⟦de7628f85⟧ 
            └─⟦this⟧ »isode-6.0/h/quipu/bind.h« 

TextFile

/* bind.h - bind parameters */

/*
 * $Header: /f/osi/h/quipu/RCS/bind.h,v 7.0 89/11/23 21:56:24 mrose Rel $
 *
 *
 * $Log:	bind.h,v $
 * Revision 7.0  89/11/23  21:56:24  mrose
 * Release 6.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 QUIPUBIND
#define QUIPUBIND
#include "quipu/name.h"
#include "quipu/authen.h"

	/* THIS SECTION GIVES BIND PARAMETERS */

/* Directory Bind Argument */

struct ds_bind_arg {
    int dba_version;                    /* Treat INT as bitstring */
#define DBA_VERSION_V1988 0x001
    int dba_auth_type;
#define DBA_AUTH_EXTERNAL -1
#define DBA_AUTH_NONE      0
#define DBA_AUTH_SIMPLE    1
#define DBA_AUTH_PROTECTED 2
#define DBA_AUTH_STRONG    3
    char *dba_time1;			/* Timestamps for protected    */
    char *dba_time2;			/* simple authentication.      */
    struct random_number dba_r1;
    struct random_number dba_r2;
    DN dba_dn;
    int dba_passwd_len;                 /* len = 0 means no password    */
#define DBA_MAX_PASSWD_LEN 512
    char dba_passwd[DBA_MAX_PASSWD_LEN];
    struct signature *dba_sig;		/* signature for strong authen	*/
    struct certificate_list *dba_cpath;	/* certification path		*/
};

struct ds_bind_error {
    int dbe_version;
    char dbe_type;
#define DBE_TYPE_SERVICE 0
#define DBE_TYPE_SECURITY 1
    int dbe_value;                      /* takes on values as define in */
					/* DSE_service or DSE_security  */
					/* according to dbe_type        */
};

#endif