baiyfcu
baiyfcu
集成使用ZLM时,修复几处潜在崩溃BUG,添加rtp server自定义app,完善字符串转码支持windos和linux
struct GbsUser { using Ptr = std::shared_ptr; int32_t index = 0; std::string id; std::string username; std::string password; std::string role; bool enable = false; std::string creator; long long update_ts = 0;...
zlmediakit和toolkit在windows上动态库输出时,默认导出所有符号
编译相关2处报错
include/list.h中 ``` #ifndef _list_h_ #define _list_h_ ``` 和list头文件中的宏冲突,导致include/list.h中代码失效, libhttp/source/http-client-connection-poll.c中 http_poll_transport_onconnect需要强转才能通过编译,相关代码如下 `return priv->poll(priv->param, tcp, tcp->socket, HTTP_TRANSPORT_POLL_WRITE, tcp->conn_timeout - (int)(now - tcp->send.clock), (void (*)(void* c, int event))http_poll_transport_onconnect);`