1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
/******************************************************************************
*
* wormulon.h
*
* application specific defines. You should never need to tune anything here
*
*****************************************************************************/
#ifndef _WORMULON_H
#ifndef TRUE
#define TRUE 1
#endif
#ifndef FALSE
#define FALSE 0
#endif
#ifdef __linux__
#define PATH_NET_DEV "/proc/net/dev"
#endif
/* define possible options */
#define OPT_NONE 0x0000
#define OPT_MRTG 0x0001
#define OPT_FULLMRTG 0x0002
#ifdef CUSTOM_MODE
#define OPT_CUSTOM 0x0004
#endif
#endif
|