mongoose.h
定义
#define MG_ENABLE_SSL 1
报错
error C2275: “BIO”: 将此类型用作表达式非法
将编译选项加入 /TP ,注释掉 mongoose.h 中的 typedef int bool;
因为C编译器中没有bool类型,改为c++编译
然后又报了几个cannot convert void* to char* 的错误,硬改代码强转就好了。
反正自己用,通过编译ok。
证书还得自己搞个
mongoose.h
定义
#define MG_ENABLE_SSL 1
报错
error C2275: “BIO”: 将此类型用作表达式非法
将编译选项加入 /TP ,注释掉 mongoose.h 中的 typedef int bool;
因为C编译器中没有bool类型,改为c++编译
然后又报了几个cannot convert void* to char* 的错误,硬改代码强转就好了。
反正自己用,通过编译ok。
证书还得自己搞个