|
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 b
Length: 1299 (0x513) Types: TextFile Names: »bind.h«
└─⟦3d0c2be1b⟧ Bits:30001254 ISODE-5.0 Tape └─⟦eba4602b1⟧ »./isode-5.0.tar.Z« └─⟦d3ac74d73⟧ └─⟦this⟧ »isode-5.0/h/quipu/bind.h«
/* bind.h - bind parameters */ /* * $Header: /f/osi/h/quipu/RCS/bind.h,v 6.0 89/03/18 23:32:44 mrose Rel $ * * * $Log: bind.h,v $ * Revision 6.0 89/03/18 23:32:44 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 QUIPUBIND #define QUIPUBIND #include "quipu/name.h" /* THIS SECTION GIVES BIND PARAMETERS */ struct ds_bind_arg { int dba_version; /* Treat INT as bitstring */ #define DBA_VERSION_V1988 0x001 /* There should be more */ /* security stuff in here */ /* INCA uses only unprotected */ /* simple credentials */ 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 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