1*0Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI" 2*0Sstevel@tonic-gate 3*0Sstevel@tonic-gate /**************************************************************************** 4*0Sstevel@tonic-gate Copyright (c) 1999,2000 WU-FTPD Development Group. 5*0Sstevel@tonic-gate All rights reserved. 6*0Sstevel@tonic-gate 7*0Sstevel@tonic-gate Portions Copyright (c) 1980, 1985, 1988, 1989, 1990, 1991, 1993, 1994 8*0Sstevel@tonic-gate The Regents of the University of California. 9*0Sstevel@tonic-gate Portions Copyright (c) 1993, 1994 Washington University in Saint Louis. 10*0Sstevel@tonic-gate Portions Copyright (c) 1996, 1998 Berkeley Software Design, Inc. 11*0Sstevel@tonic-gate Portions Copyright (c) 1989 Massachusetts Institute of Technology. 12*0Sstevel@tonic-gate Portions Copyright (c) 1998 Sendmail, Inc. 13*0Sstevel@tonic-gate Portions Copyright (c) 1983, 1995, 1996, 1997 Eric P. Allman. 14*0Sstevel@tonic-gate Portions Copyright (c) 1997 by Stan Barber. 15*0Sstevel@tonic-gate Portions Copyright (c) 1997 by Kent Landfield. 16*0Sstevel@tonic-gate Portions Copyright (c) 1991, 1992, 1993, 1994, 1995, 1996, 1997 17*0Sstevel@tonic-gate Free Software Foundation, Inc. 18*0Sstevel@tonic-gate 19*0Sstevel@tonic-gate Use and distribution of this software and its source code are governed 20*0Sstevel@tonic-gate by the terms and conditions of the WU-FTPD Software License ("LICENSE"). 21*0Sstevel@tonic-gate 22*0Sstevel@tonic-gate If you did not receive a copy of the license, it may be obtained online 23*0Sstevel@tonic-gate at http://www.wu-ftpd.org/license.html. 24*0Sstevel@tonic-gate 25*0Sstevel@tonic-gate $Id: authenticate.h,v 1.8 2000/07/01 18:17:38 wuftpd Exp $ 26*0Sstevel@tonic-gate 27*0Sstevel@tonic-gate ****************************************************************************/ 28*0Sstevel@tonic-gate /* 29*0Sstevel@tonic-gate * When of the supported authentication methods the ftp server will attempt 30*0Sstevel@tonic-gate * to use. Define as 1 to enable, 0 to disable. 31*0Sstevel@tonic-gate */ 32*0Sstevel@tonic-gate 33*0Sstevel@tonic-gate #ifdef USE_RFC931 34*0Sstevel@tonic-gate #define USE_A_RFC931 1 /* Use RFC931-style authentication */ 35*0Sstevel@tonic-gate #else 36*0Sstevel@tonic-gate #define USE_A_RFC931 0 /* No RFC931-style authentication */ 37*0Sstevel@tonic-gate #endif 38*0Sstevel@tonic-gate 39*0Sstevel@tonic-gate /* Bitmasks used to identify authentication methods that returned a result */ 40*0Sstevel@tonic-gate #define A_RFC931 1 << 0; /* RFC931 */ 41