2004-04-22 02:10:48 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1995 Danny Gasparovski.
|
2007-09-16 23:08:06 +02:00
|
|
|
*
|
|
|
|
* Please read the file COPYRIGHT for the
|
2004-04-22 02:10:48 +02:00
|
|
|
* terms and conditions of the copyright.
|
|
|
|
*/
|
|
|
|
|
2009-06-24 14:42:29 +02:00
|
|
|
//#define DEBUG 1
|
2004-04-22 02:10:48 +02:00
|
|
|
|
2009-06-24 14:42:29 +02:00
|
|
|
#ifdef DEBUG
|
2004-04-22 02:10:48 +02:00
|
|
|
|
|
|
|
#define DBG_CALL 0x1
|
|
|
|
#define DBG_MISC 0x2
|
|
|
|
#define DBG_ERROR 0x4
|
|
|
|
|
2009-06-24 14:42:29 +02:00
|
|
|
#define dfd stderr
|
|
|
|
|
|
|
|
extern int slirp_debug;
|
|
|
|
|
2004-04-22 02:10:48 +02:00
|
|
|
#define DEBUG_CALL(x) if (slirp_debug & DBG_CALL) { fprintf(dfd, "%s...\n", x); fflush(dfd); }
|
|
|
|
#define DEBUG_ARG(x, y) if (slirp_debug & DBG_CALL) { fputc(' ', dfd); fprintf(dfd, x, y); fputc('\n', dfd); fflush(dfd); }
|
|
|
|
#define DEBUG_ARGS(x) if (slirp_debug & DBG_CALL) { fprintf x ; fflush(dfd); }
|
|
|
|
#define DEBUG_MISC(x) if (slirp_debug & DBG_MISC) { fprintf x ; fflush(dfd); }
|
|
|
|
#define DEBUG_ERROR(x) if (slirp_debug & DBG_ERROR) {fprintf x ; fflush(dfd); }
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#define DEBUG_CALL(x)
|
|
|
|
#define DEBUG_ARG(x, y)
|
|
|
|
#define DEBUG_ARGS(x)
|
|
|
|
#define DEBUG_MISC(x)
|
|
|
|
#define DEBUG_ERROR(x)
|
|
|
|
|
|
|
|
#endif
|