25 lines
824 B
C
25 lines
824 B
C
/**************************
|
|
* Debug Dependency *
|
|
***************************
|
|
* Designed & Developed by *
|
|
* Adrien Marquès *
|
|
* <xdrm-brackets> *
|
|
***************************
|
|
* doowap31@gmail.com *
|
|
**************************/
|
|
|
|
/* 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
|
|
#define DEBUGMOD ( SOCKETS | THREADS | BUFFERS ) // REVEALS + HEADER + THREADS
|