common.h revision 97db4761382024093f441e4bc78ba8b6a056504d
#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 struct master_service *service;
extern const struct login_settings *global_login_settings;
#endif