我们如何通过Web套接字通信中的回调函数发送错误消息? 我能够处理异常和错误,但无法将数据发送回服务器。 我的工作:
WebSocketInitialization(9000, _CLIENT_CRT,
_CLIENT_KEY, _ROOT_CRT);
while (1) {
ServiceWebSoc(timeout);
}
static struct lws_protocols protocols[] =
{
{
"http-only", // name
Callback_http, // callback
0 // per_session_data_size
},
{
NULL, NULL, 0 // End of list
}
};
_context = lws_create_context(&info); //sending info structure containing port number etc