 |
XRootD
|
Go to the documentation of this file. 1 #ifndef ___CRYPTOSSL_TRACE_H___
2 #define ___CRYPTOSSL_TRACE_H___
38 #define QTRACE(act) (sslTrace && (sslTrace->What & cryptoTRACE_ ## act))
39 #define PRINT(y) {if (sslTrace) {sslTrace->Beg(epname); \
40 std::cerr <<y; sslTrace->End();}}
41 #define TRACE(act,x) if (QTRACE(act)) PRINT(x)
42 #define DEBUG(y) TRACE(Debug,y)
43 #define EPNAME(x) static const char *epname = x;