/* * Copyright (C) 1996-2018 The Squid Software Foundation and contributors * * Squid software is distributed under GPLv2+ license and includes * contributions from numerous individuals and organizations. * Please see the COPYING and CONTRIBUTORS files for details. */ /* NT_auth - Version 2.0 Modified to act as a Squid authenticator module. Returns OK for a successful authentication, or ERR upon error. Guido Serassio, Torino - Italy Uses code from - Antonino Iannella 2000 Andrew Tridgell 1997 Richard Sharpe 1996 Bill Welliver 1999 * Distributed freely under the terms of the GNU General Public License, * version 2 or later. See the file COPYING for licensing details * * 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, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA. */ #ifndef _VALID_H_ #define _VALID_H_ #include "sspwin32.h" #if HAVE_WINDOWS_H #include #endif #include #include #undef debug /************* CONFIGURATION ***************/ /* SMB User verification function */ #define NTV_NO_ERROR 0 #define NTV_SERVER_ERROR 1 #define NTV_GROUP_ERROR 2 #define NTV_LOGON_ERROR 3 #ifndef LOGON32_LOGON_NETWORK #define LOGON32_LOGON_NETWORK 3 #endif #define NTV_DEFAULT_DOMAIN "." extern char * NTAllowedGroup; extern char * NTDisAllowedGroup; extern int UseDisallowedGroup; extern int UseAllowedGroup; extern int debug_enabled; extern char Default_NTDomain[DNLEN+1]; extern const char * errormsg; /* Debugging stuff */ #if defined(__GNUC__) /* this is really a gcc-ism */ #include static char *__foo; #define debug(X...) if (debug_enabled) { \ fprintf(stderr,"nt_auth[%d](%s:%d): ", getpid(), \ ((__foo=strrchr(__FILE__,'/'))==NULL?__FILE__:__foo+1),\ __LINE__);\ fprintf(stderr,X); } #else /* __GNUC__ */ static void debug(char *format,...) { if (debug_enabled) { va_list args; va_start(args,format); fprintf(stderr, "nt_auth[%d]: ",getpid()); vfprintf(stderr, format, args); va_end(args); } } #endif /* __GNUC__ */ #endif