同步操作将从 libhv/libhv 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#include "WebSocketChannel.h"namespace hv {int WebSocketChannel::send(const char* buf, int len, enum ws_opcode opcode /* = WS_OPCODE_BINARY */, bool fin /* = true */) {int fragment = 0xFFFF; // 65535if (len > fragment) {return send(buf, len, fragment, opcode);}std::lock_guard<std::mutex> locker(mutex_);return sendFrame(buf, len, opcode, fin);}/** websocket fragment* lock ->* sendFrame(p, fragment, opcode, false) ->* sendFrame(p, fragment, WS_OPCODE_CONTINUE, false) ->* ... ->* sendFrame(p, remain, WS_OPCODE_CONTINUE, true)* unlock**/int WebSocketChannel::send(const char* buf, int len, int fragment, enum ws_opcode opcode /* = WS_OPCODE_BINARY */) {std::lock_guard<std::mutex> locker(mutex_);if (len <= fragment) {return sendFrame(buf, len, opcode, true);}// first fragmentint nsend = sendFrame(buf, fragment, opcode, false);if (nsend < 0) return nsend;const char* p = buf + fragment;int remain = len - fragment;while (remain > fragment) {nsend = sendFrame(p, fragment, WS_OPCODE_CONTINUE, false);if (nsend < 0) return nsend;p += fragment;remain -= fragment;}// last fragmentnsend = sendFrame(p, remain, WS_OPCODE_CONTINUE, true);if (nsend < 0) return nsend;return len;}int WebSocketChannel::sendPing() {std::lock_guard<std::mutex> locker(mutex_);if (type == WS_CLIENT) {return write(WS_CLIENT_PING_FRAME, WS_CLIENT_MIN_FRAME_SIZE);}return write(WS_SERVER_PING_FRAME, WS_SERVER_MIN_FRAME_SIZE);}int WebSocketChannel::sendPong() {std::lock_guard<std::mutex> locker(mutex_);if (type == WS_CLIENT) {return write(WS_CLIENT_PONG_FRAME, WS_CLIENT_MIN_FRAME_SIZE);}return write(WS_SERVER_PONG_FRAME, WS_SERVER_MIN_FRAME_SIZE);}int WebSocketChannel::sendFrame(const char* buf, int len, enum ws_opcode opcode /* = WS_OPCODE_BINARY */, bool fin /* = true */) {bool has_mask = false;char mask[4] = {0};if (type == WS_CLIENT) {*(int*)mask = rand();has_mask = true;}int frame_size = ws_calc_frame_size(len, has_mask);if (sendbuf_.len < (size_t)frame_size) {sendbuf_.resize(ceil2e(frame_size));}ws_build_frame(sendbuf_.base, buf, len, mask, has_mask, opcode, fin);return write(sendbuf_.base, frame_size);}}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。