common.h revision 4d4d6d4745682790c20d759ba93dbea46b812c5d
#ifndef COMMON_H
#define COMMON_H
#include "lib.h"
#include "login-settings.h"
/* Used only for string sanitization */
#define MAX_MECH_NAME 64
#define AUTH_FAILED_MSG "Authentication failed."
#define AUTH_TEMP_FAILED_MSG "Temporary authentication failure."
#define AUTH_PLAINTEXT_DISABLED_MSG \
extern const char *login_protocol, *login_process_name;
extern struct auth_client *auth_client;
extern bool closing_down;
extern int anvil_fd;
extern const struct login_settings *global_login_settings;
#endif