Topic: wolfSSL 2.2.0 names clash in ssl.h
I have successfully compiled and linked wolfSSL 2.2.0 to my project, but lines 421 and 422 of ssl.h do not compile.
The following two identifiers within an anonymous enum object...
 OCSP_REQUEST  = 4,
 OCSP_RESPONSE = 8,
...clash with these #define's in WinCrypt.h
#define OCSP_REQUEST                        ((LPCSTR) 66)
#define OCSP_RESPONSE                       ((LPCSTR) 67)
My question: Is this a bug in my code or does the wolfSSL API include WinCrypt.h somewhere and thus a bug in wolfSSL?