config.h

来自「一百个病毒的源代码 包括熊猫烧香等 极其具有研究价值」· C头文件 代码 · 共 57 行

H
57
字号
/*	config.h******NOTE******If any of these parameters are changed, you should do a 'make clean'*****************/		#ifndef _CONFIG_H#define _CONFIG_H/*	Typical Redhat-6.x locations	httproot	"/home/httpd/html"	cgibin		"/home/httpd/cgi-bin"	Typical SuSE HTTP locations	httproot	"/usr/local/httpd/htdocs"	cgibin		"/usr/local/httpd/cgi-bin"	Typical RedHat-7.0 HTTP locations	httproot	"/var/www/html"	cgibin		"/var/www/cgi-bin"*/#define HTTPROOT	"/home/httpd/html"#define CGIBIN		"/home/httpd/cgi-bin"#define	NMHTTP		"/nmail"// If using the sendmail compatiability binary that comes with //    qmail or exim, uncomment the following//    (gets rid of -U option when calling sendmail)//#define SENDMAIL_N_U#define SENDMAIL	"/usr/sbin/sendmail"#define	MAILSPOOLDIR	"/var/spool/mail"#define	LOCALSTATEDIR	"/var/nmail"#define PREFDIR		"/var/nmail/pref"#define LOCKDIR		"/var/nmail/lock"#define TMPDIR		"/var/nmail/tmp"#define SBINDIR		"/usr/sbin"#define TMPPREFIX	"tmp_"#define SESPREFIX	"ses_"#endif

⌨️ 快捷键说明

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