WebSockets中“ LWS_CALLBACK_RECEIVE”中的错误消息

时间:2018-07-10 11:29:20

标签: websocket libwebsockets

我们如何通过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

0 个答案:

没有答案