Changeset 1076 in vbox for trunk/src/VBox/Devices/Network/slirp/debug.h
- Timestamp:
- Feb 27, 2007 1:24:42 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/slirp/debug.h
r1033 r1076 9 9 #define PRN_SPRINTF 2 10 10 11 #ifdef VBOX12 11 /* Unused anyway, using VBox Log facility. */ 13 12 #define dfd NULL 14 #else /* !VBOX */15 extern FILE *dfd;16 extern FILE *lfd;17 #endif /* !VBOX */18 13 extern int dostats; 19 14 extern int slirp_debug; … … 23 18 #define DBG_ERROR 0x4 24 19 #define DEBUG_DEFAULT DBG_CALL|DBG_MISC|DBG_ERROR 25 26 #ifndef VBOX27 #ifdef DEBUG28 #define DEBUG_CALL(x) if (slirp_debug & DBG_CALL) { fprintf(dfd, "%s...\n", x); fflush(dfd); }29 #define DEBUG_ARG(x, y) if (slirp_debug & DBG_CALL) { fputc(' ', dfd); fprintf(dfd, x, y); fputc('\n', dfd); fflush(dfd); }30 #define DEBUG_ARGS(x) if (slirp_debug & DBG_CALL) { fprintf x ; fflush(dfd); }31 #define DEBUG_MISC(x) if (slirp_debug & DBG_MISC) { fprintf x ; fflush(dfd); }32 #define DEBUG_ERROR(x) if (slirp_debug & DBG_ERROR) {fprintf x ; fflush(dfd); }33 34 35 #else36 37 #define DEBUG_CALL(x)38 #define DEBUG_ARG(x, y)39 #define DEBUG_ARGS(x)40 #define DEBUG_MISC(x)41 #define DEBUG_ERROR(x)42 43 #endif44 #else /* VBOX */45 20 46 21 #include <VBox/log.h> … … 87 62 #endif /* !LOG_ENABLED */ 88 63 89 #endif /* VBOX */90 91 64 void debug_init _P((char *, int)); 92 65 /*void ttystats _P((struct ttys *)); */ 93 66 void allttystats _P((void)); 94 #ifdef VBOX95 67 void ipstats _P((PNATState)); 96 68 void tcpstats _P((PNATState)); … … 99 71 void mbufstats _P((PNATState)); 100 72 void sockstats _P((PNATState)); 101 #else /* !VBOX */102 void ipstats _P((void));103 void vjstats _P((void));104 void tcpstats _P((void));105 void udpstats _P((void));106 void icmpstats _P((void));107 void mbufstats _P((void));108 void sockstats _P((void));109 #endif /* VBOX */110 #ifndef VBOX111 void slirp_exit _P((int));112 #endif /* VBOX */113 73
Note:
See TracChangeset
for help on using the changeset viewer.