/* charon_err.h -- this file contains error codes for Charon.
 *
 * Created by:	Derek Atkins <warlord@MIT.EDU>
 *
 * $Source: /afs/net.mit.edu/user/warlord/Thesis/src/include/RCS/charon_err.h,v $
 * $Author: warlord $
 *
 */

#include <warlord-copyright.h>

#ifndef _CRN_ERR_H
#define _CRN_ERR_H

#define CRN_OK			0
#define CRN_UNKNOWN_PKT_TYPE	-1
#define CRN_ERR_DATALEN		-2
#define CRN_BAD_VERSION		-3
#define CRN_ALLOC		-4
#define CRN_BAD_PACKET		-5
#define CRN_BADPW		-6
#define CRN_KRB_PROT		-7
#define CRN_MK_PRIV		-8
#define CRN_ERR_COOKIE		-9
#define CRN_ERROR		-10


#endif /* _CRN_ERR_H */
