2017-04-09 16:56:11 +00:00
|
|
|
/**************************
|
|
|
|
* Debug Dependency *
|
|
|
|
***************************
|
|
|
|
* Designed & Developed by *
|
|
|
|
* Adrien Marquès *
|
|
|
|
* <xdrm-brackets> *
|
|
|
|
***************************
|
|
|
|
* doowap31@gmail.com *
|
|
|
|
**************************/
|
|
|
|
|
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
|
2017-04-26 11:13:53 +00:00
|
|
|
#define COMMUNI 0x20 // debug des COMMUNICATIONS
|
2017-05-04 15:34:03 +00:00
|
|
|
#define SOCKADV 0x40 // debug des ADVANCED SOCKET
|
2017-04-01 15:01:36 +00:00
|
|
|
|
|
|
|
#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
|
2017-04-26 12:25:05 +00:00
|
|
|
#define COM 0x20 // FILTRE pour COMMUNICATIONS
|
2017-05-04 15:34:03 +00:00
|
|
|
#define SAD 0x40 // FILTRE pour ADVANCED SOCKET
|
2017-04-01 15:01:36 +00:00
|
|
|
|
|
|
|
// possibilité de cumuler les DEBUGMODES
|
2017-04-06 11:36:51 +00:00
|
|
|
#define DEBUGMOD ( SOCKETS | THREADS | BUFFERS ) // REVEALS + HEADER + THREADS
|