~ubuntu-branches/ubuntu/vivid/dovecot/vivid

« back to all changes in this revision

Viewing changes to src/login-common/common.h

  • Committer: Bazaar Package Importer
  • Author(s): Jaldhar H. Vyas
  • Date: 2005-11-05 23:19:19 UTC
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20051105231919-ydujs4y7687fpor2
Tags: upstream-1.0.alpha4
ImportĀ upstreamĀ versionĀ 1.0.alpha4

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
#define __COMMON_H
3
3
 
4
4
#include "lib.h"
5
 
#include "../auth/auth-login-interface.h"
6
 
 
7
 
extern int disable_plaintext_auth, process_per_connection, verbose_proctitle;
8
 
extern int verbose_ssl;
 
5
 
 
6
/* Used only for string sanitization */
 
7
#define MAX_MECH_NAME 64
 
8
 
 
9
#define AUTH_FAILED_MSG "Authentication failed."
 
10
#define AUTH_TEMP_FAILED_MSG "Temporary authentication failure."
 
11
 
 
12
extern const char *login_protocol;
 
13
 
 
14
extern int disable_plaintext_auth, process_per_connection, greeting_capability;
 
15
extern int verbose_proctitle, verbose_ssl, verbose_auth;
 
16
extern const char *greeting, *log_format;
 
17
extern const char *const *log_format_elements;
9
18
extern unsigned int max_logging_users;
10
19
extern unsigned int login_process_uid;
 
20
extern struct auth_client *auth_client;
11
21
 
12
22
void main_ref(void);
13
23
void main_unref(void);