search for: mech_anonymous

Displaying 4 results from an estimated 4 matches for "mech_anonymous".

2008 Aug 12
5
[PATCH] Support GSS-SPNEGO natively
..._gssapi_auth_initial, + mech_gssapi_auth_continue, + mech_gssapi_auth_free +}; + #endif --- dovecot-1.0.13/src/auth/mech.c 2007-12-11 11:52:08.000000000 -0700 +++ dovecot-1.0.13-jgg/src/auth/mech.c 2008-08-11 21:30:56.000000000 -0600 @@ -72,6 +72,7 @@ extern struct mech_module mech_anonymous; #ifdef HAVE_GSSAPI extern struct mech_module mech_gssapi; +extern struct mech_module mech_gssapi_spnego; #endif void mech_init(void) @@ -86,6 +87,7 @@ mech_register_module(&mech_anonymous); #ifdef HAVE_GSSAPI mech_register_module(&mech_gssapi); + mech_register_...
2007 May 22
1
[PATCH] add some const's
...module. diff -r e1b3043c0d90 -r a486a946dfa1 src/auth/mech-anonymous.c --- a/src/auth/mech-anonymous.c Tue May 22 03:58:32 2007 +0300 +++ b/src/auth/mech-anonymous.c Tue May 22 09:47:45 2007 +0400 @@ -34,7 +34,7 @@ static struct auth_request *mech_anonymo return request; } -struct mech_module mech_anonymous = { +const struct mech_module mech_anonymous = { "ANONYMOUS", MEMBER(flags) MECH_SEC_ANONYMOUS, diff -r e1b3043c0d90 -r a486a946dfa1 src/auth/mech-cram-md5.c --- a/src/auth/mech-cram-md5.c Tue May 22 03:58:32 2007 +0300 +++ b/src/auth/mech-cram-md5.c Tue May 22 09:47:45 2007 +0400 @...
2004 Jul 01
3
[PATCH, RFC] add APOP authentication mechanism
.../mech.c 2004-07-01 11:38:33.000000000 +0400 @@ -384,6 +384,7 @@ static void auth_failure_timeout(void *c } extern struct mech_module mech_plain; +extern struct mech_module mech_apop; extern struct mech_module mech_cram_md5; extern struct mech_module mech_digest_md5; extern struct mech_module mech_anonymous; @@ -411,6 +412,8 @@ void mech_init(void) while (*mechanisms != NULL) { if (strcasecmp(*mechanisms, "PLAIN") == 0) mech_register_module(&mech_plain); + else if (strcasecmp(*mechanisms, "APOP") == 0) + mech_register_module(&mech_apop); else if (strcasecmp(*...
2004 Aug 09
1
[PATCH] RPA authentication mechanism
...32/src/auth/mech.c 2004-07-30 21:17:33.000000000 +0400 @@ -389,6 +389,7 @@ extern struct mech_module mech_apop; extern struct mech_module mech_cram_md5; extern struct mech_module mech_digest_md5; extern struct mech_module mech_ntlm; +extern struct mech_module mech_rpa; extern struct mech_module mech_anonymous; void mech_init(void) @@ -424,6 +425,8 @@ void mech_init(void) mech_register_module(&mech_digest_md5); else if (strcasecmp(*mechanisms, "NTLM") == 0) mech_register_module(&mech_ntlm); + else if (strcasecmp(*mechanisms, "RPA") == 0) + mech_register_module...