#ifndef AUTH_CLIENT_INTERFACE_H
#define AUTH_CLIENT_INTERFACE_H
/* Major version changes are not backwards compatible,
minor version numbers can be ignored. */
/* GSSAPI can use quite large packets */
enum mech_security_flags {
/* Don't advertise this as available SASL mechanism (eg. APOP) */
/* Anonymous authentication */
/* Transfers plaintext passwords */
/* Subject to passive (dictionary) attack */
/* Subject to active (non-dictionary) attack */
/* Provides forward secrecy between sessions */
/* Provides mutual authentication */
};
/* auth failure codes */
/* not actually returned from auth service */
#endif