45 lines
1.3 KiB
C
45 lines
1.3 KiB
C
/*
|
|
Copyright (c) 1998-2003, Purdue University
|
|
All rights reserved.
|
|
|
|
Redistribution and use in source and binary forms are permitted provided
|
|
that:
|
|
|
|
(1) source distributions retain this entire copyright notice and comment,
|
|
and
|
|
(2) distributions including binaries display the following acknowledgement:
|
|
|
|
"This product includes software developed by Purdue University."
|
|
|
|
in the documentation or other materials provided with the distribution
|
|
and in all advertising materials mentioning features or use of this
|
|
software.
|
|
|
|
The name of the University may not be used to endorse or promote products
|
|
derived from this software without specific prior written permission.
|
|
|
|
THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
|
|
WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
|
|
MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
This software was developed by:
|
|
Curtis Smith
|
|
|
|
Purdue University
|
|
Engineering Computer Network
|
|
465 Northwestern Avenue
|
|
West Lafayette, Indiana 47907-2035 U.S.A.
|
|
|
|
Send all comments, suggestions, or bug reports to:
|
|
software@ecn.purdue.edu
|
|
*/
|
|
|
|
/* Log levels */
|
|
#define LOG_ERROR 0x01
|
|
#define LOG_WARNING 0x02
|
|
#define LOG_INFO 0x03
|
|
|
|
#define LOG_SYS 0x04
|
|
|
|
/* Indicate if interactive logging is available */
|
|
extern int LogInteractive;
|