⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ntlm.h

📁 一个功能非常全面的代理服务器源代码程序,
💻 H
字号:
/* * (C) 2002 Guido Serassio <serassio@libero.it> * Based on previous work of Francesco Chemolli, Robert Collins and Andrew Doran * * Distributed freely under the terms of the GNU General Public License, * version 2. 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 _NTLM_H_#define _NTLM_H_#include "sspwin32.h"#include <windows.h>#include <sspi.h>#include <security.h>#include "ntlmauth.h"#undef debug/************* CONFIGURATION ***************//* * define this if you want debugging */#ifndef DEBUG#define DEBUG#endif#define FAIL_DEBUG 0/************* END CONFIGURATION ***************/#include <sys/types.h>extern int debug_enabled;#if FAIL_DEBUGextern int fail_debug_enabled;#endif/* Debugging stuff */#ifdef __GNUC__			/* this is really a gcc-ism */#ifdef DEBUG#include <stdio.h>#include <unistd.h>static char *__foo;#define debug(X...) if (debug_enabled) { \                    fprintf(stderr,"ntlm-auth[%d](%s:%d): ", getpid(), \                    ((__foo=strrchr(__FILE__,'/'))==NULL?__FILE__:__foo+1),\                    __LINE__);\                    fprintf(stderr,X); }#else /* DEBUG */#define debug(X...)		/* */#endif /* DEBUG */#else /* __GNUC__ */static voiddebug(char *format,...){#ifdef DEBUG#ifdef _SQUID_MSWIN_#if FAIL_DEBUG    if (debug_enabled || fail_debug_enabled) {#else    if (debug_enabled) {#endif	va_list args;	va_start(args, format);	fprintf(stderr, "ntlm-auth[%d]: ", getpid());	vfprintf(stderr, format, args);	va_end(args);#if FAIL_DEBUG	fail_debug_enabled = 0;#endif    }#endif /* _SQUID_MSWIN_ */#endif /* DEBUG */}#endif /* __GNUC__ *//* A couple of harmless helper macros */#define SEND(X) debug("sending '%s' to squid\n",X); printf(X "\n");#ifdef __GNUC__#define SEND2(X,Y...) debug("sending '" X "' to squid\n",Y); printf(X "\n",Y);#else/* no gcc, no debugging. varargs macros are a gcc extension */#define SEND2(X,Y) debug("sending '" X "' to squid\n",Y); printf(X "\n",Y);#endifextern char *NTAllowedGroup;extern char *NTDisAllowedGroup;extern int UseDisallowedGroup;extern int UseAllowedGroup;extern int ntlm_errno;#define NTLM_NO_ERROR 0#define NTLM_SSPI_ERROR 1#define NTLM_BAD_NTGROUP 2#define NTLM_BAD_REQUEST 3#define NEGOTIATE_LENGTH 16extern void uc(char *);extern const char *ntlm_make_negotiate(void);extern char *ntlm_check_auth(ntlm_authenticate * auth, int auth_length);extern void hex_dump(void *, int);#define safe_free(x)	if (x) { free(x); x = NULL; }#endif /* _NTLM_H_ */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -