Commit cfdc3653 by xiongziliang

删除注释

parent 6d2fe16d
......@@ -117,7 +117,6 @@ begin_decode:
void WebSocketSplitter::onPlayloadData(uint8_t *ptr, uint64_t len) {
if(_mask_flag){
for(int i = 0; i < len ; ++i,++ptr){
InfoL << (int)(*(ptr)) << "^" << (int)(_mask[(i + _mask_offset) % 4]) << "=" << (int)(*(ptr) ^ _mask[(i + _mask_offset) % 4]);
*(ptr) ^= _mask[(i + _mask_offset) % 4];
}
_mask_offset = (_mask_offset + len) % 4;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论