Lines Matching refs:structure

386  * This structure is returned in the e-data field of the KRB-ERROR
398 * A null-terminated array of this structure is returned by the KDC as
401 * The same data structure is used by both etype-info and etype-info2
749 going to use this structure. */
1116 /* This structure is passed into the client preauth functions and passed
1126 /* This structure lets us keep track of all of the modules which are loaded,
1136 * copy them directly into the krb5_kdc_req structure during
1304 * Extending the krb5_get_init_creds_opt structure. The original
1305 * krb5_get_init_creds_opt structure is defined publicly. The
1307 * assumed a pre-allocated structure which was passed to
1313 * opts structure using krb5_get_init_creds_alloc(). To do so will
1318 * KRB5_GET_INIT_CREDS_OPT_EXTENDED says that the structure was allocated
1321 * structure is a shadow copy of an original krb5_get_init_creds_opt
1322 * structure.
1324 * krb5int_gic_opt_to_opte(), the resulting extended structure should be
1326 * structure was already extended and there is no need to free it.
1356 * Do not change anything above this point in this structure.
1357 * It is identical to the public krb5_get_init_creds_opt structure.
1669 * This structure is used to map Kerberos supported OID's,
2182 /* Determine the external size of a particular opaque structure */
2189 /* Serialize the structure into a buffer */
2197 /* Deserialize the structure from a buffer */
2320 * Convenience function for structure magic number
2322 #define KRB5_VERIFY_MAGIC(structure,magic_number) \
2323 if ((structure)->magic != (magic_number)) return (magic_number);