IMAP GSS authentication method. More...
#include "config.h"
#include <arpa/inet.h>
#include <stdio.h>
#include <string.h>
#include "private.h"
#include "mutt/lib.h"
#include "config/lib.h"
#include "core/lib.h"
#include "conn/lib.h"
#include "adata.h"
#include "auth.h"
#include <gssapi/gssapi.h>
#include <gssapi/gssapi_generic.h>
Go to the source code of this file.
Macros | |
#define | GSS_AUTH_P_NONE 1 |
#define | GSS_AUTH_P_INTEGRITY 2 |
#define | GSS_AUTH_P_PRIVACY 4 |
Functions | |
static void | print_gss_error (OM_uint32 err_maj, OM_uint32 err_min) |
Print detailed error message to the debug log. | |
enum ImapAuthRes | imap_auth_gss (struct ImapAccountData *adata, const char *method) |
GSS Authentication support - Implements ImapAuth::authenticate() -. | |
IMAP GSS authentication method.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.
Definition in file auth_gss.c.
#define GSS_AUTH_P_NONE 1 |
Definition at line 57 of file auth_gss.c.
#define GSS_AUTH_P_INTEGRITY 2 |
Definition at line 58 of file auth_gss.c.
#define GSS_AUTH_P_PRIVACY 4 |
Definition at line 59 of file auth_gss.c.
|
static |
Print detailed error message to the debug log.
err_maj | Error's major number |
err_min | Error's minor number |
Definition at line 66 of file auth_gss.c.