view src/auth/auth-mech-desc.h @ 1000:0fbafade2d85 HEAD

If auth/login process died unexpectedly, the exit status or killing signal wasn't logged.
author Timo Sirainen <tss@iki.fi>
date Tue, 21 Jan 2003 09:58:49 +0200
parents 218e68ab290d
children c27c6089e933
line wrap: on
line source

#ifndef __AUTH_MECH_DESC_H
#define __AUTH_MECH_DESC_H

struct auth_mech_desc {
	enum auth_mech mech;
	const char *name;
	int plaintext;
	int advertise;
};

static struct auth_mech_desc auth_mech_desc[AUTH_MECH_COUNT] = {
	{ AUTH_MECH_PLAIN,		"PLAIN",	TRUE, FALSE },
	{ AUTH_MECH_DIGEST_MD5,		"DIGEST-MD5",	FALSE, TRUE }
};

#endif