File:  [ELWIX - Embedded LightWeight unIX -] / suX / inc / defs.h
Revision 1.1.1.1.2.2: download - view: text, annotated - select for diffs - revision graph
Fri May 20 16:26:53 2011 UTC (13 years, 1 month ago) by misho
Branches: sux2_0
Diff to: branchpoint 1.1.1.1: preferred, colored

added logfile support

/*************************************************************************
 * (C) 2011 AITNET - Sofia/Bulgaria - <office@aitbg.com>
 *  by Michael Pounov <misho@aitbg.com>
 *
 * $Author: misho $
 * $Id: defs.h,v 1.1.1.1.2.2 2011/05/20 16:26:53 misho Exp $
 *
 *************************************************************************/
#ifndef __DEFS_H
#define __DEFS_H


#define STRSIZ		256

#define DEFAULT_CONFIG	"/etc/suX.conf"
#define DEFAULT_CMD	"!/bin/sh -c"
#define DEFAULT_LOG	"/var/log/suX.log"

#ifndef PACKAGE_NAME
#define PACKAGE_NAME	"suX"
#endif


struct tagProc {
	short	proc_uid;
	short	proc_gid;
	int	proc_prio;
	char	proc_class[STRSIZ];
	char	proc_dir[MAXPATHLEN];
	char	proc_name[MAXPATHLEN];
	char	proc_cmd[MAXPATHLEN];
};


extern char **environ;
extern sl_config cfg;
extern int Verbose;
extern struct tagProc proc;
extern FILE *lf;


#endif

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>