2017-04-01 15:01:36 +00:00
|
|
|
/* debug */
|
|
|
|
#define SOCKETS 0x01 // debug RESEAU
|
|
|
|
#define REVEALS 0x02 // debug EXPLICITATION des strings
|
|
|
|
#define BUFFERS 0x04 // debug des BUFFERS
|
|
|
|
#define HEADERS 0x08 // debug des HEADERS de fonctions
|
|
|
|
#define THREADS 0x10 // debug des THREADS
|
|
|
|
|
|
|
|
#define SCK 0x01 // FILTRE pour SOCKET
|
|
|
|
#define RVL 0x02 // FILTRE pour REVEALS
|
|
|
|
#define BUF 0x04 // FILTRE pour BUFFERS
|
|
|
|
#define HDR 0x08 // FILTRE pour HEADERS
|
|
|
|
#define THR 0x10 // FILTRE pour THREADS
|
|
|
|
|
|
|
|
// possibilité de cumuler les DEBUGMODES
|
2017-04-06 11:36:51 +00:00
|
|
|
#define DEBUGMOD ( SOCKETS | THREADS | BUFFERS ) // REVEALS + HEADER + THREADS
|