chap.h revision 21673
178064Sume/*
257522Sshin *	    Written by Toshiharu OHNO (tony-o@iij.ad.jp)
378064Sume *
478064Sume *   Copyright (C) 1993, Internet Initiative Japan, Inc. All rights reserverd.
578064Sume *
678064Sume * Redistribution and use in source and binary forms are permitted
757522Sshin * provided that the above copyright notice and this paragraph are
8122115Sume * duplicated in all such forms and that any documentation,
9164224Sbz * advertising materials, and other materials related to such
10164224Sbz * distribution and use acknowledge that the software was developed
11164224Sbz * by the Internet Initiative Japan.  The name of the
12164224Sbz * IIJ may not be used to endorse or promote products derived
13122115Sume * from this software without specific prior written permission.
14122115Sume * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
15122115Sume * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
16122115Sume * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
17122115Sume *
18122115Sume * $FreeBSD: head/usr.sbin/ppp/chap.h 21673 1997-01-14 07:20:47Z jkh $
19122115Sume *
20122115Sume *	TODO:
21122115Sume */
22122115Sume
23122115Sume#ifndef _CHAP_H_
24122115Sume#define	_CHAP_H_
25122115Sume#include "global.h"
26122115Sume#include <md5.h>
27122115Sume
28122115Sume#define	CHAP_CHALLENGE	1
29122115Sume#define	CHAP_RESPONSE	2
30122115Sume#define	CHAP_SUCCESS	3
31122115Sume#define	CHAP_FAILURE	4
32122115Sume#endif
33122115Sume