C ++中的Websocket服务器发送消息时出错

时间:2016-01-12 18:25:38

标签: c++ websocket server

我一直在开发一个C ++ websocket服务器,它工作得很好,除了一个我不理解的错误。

问题是我可以接收数据并执行Web浏览器声明的操作,但假设服务器需要发回一些信息,第一次成功发送,但是当我重复相同的请求时(或另一个请求)需要信息回到浏览器),我的服务器尝试发送它(显然成功),然后自己再次发送它(我不知道为什么)然后关闭连接。

这是我发送邮件的代码:

int CSocketNode::SendMsg(const char opr, const char* cad,int length){
    if (socket_conn == INVALID_SOCKET)
        return -1;
    int pos = 0;
    int result = 0;
    memset(Buffer_out, 0, BUFFER_SIZE);
    if(!webSocket){
        //Build header
        Buffer_out[pos] = 57; //12345 % 256;
        Buffer_out[pos + 1] = 48; //12345 / 256;

        length++;
        if((length / 256) >= 256){
            int divi = length / 256;
            Buffer_out[pos + 2] = length % 256;
            Buffer_out[pos + 3] = divi % 256;
            Buffer_out[pos + 4] = divi / 256;
        } else {
            Buffer_out[pos + 2] = length % 256;
            Buffer_out[pos + 3] = 0;
            Buffer_out[pos + 4] = length / 256;
        }
        Buffer_out[pos + 5] = opr;
        pos = 5;
        memcpy(Buffer_out + pos + 1, cad, length);
    } else {
        Buffer_out[pos++] = 0x81;
        length++;
        if(length <= 125){
            Buffer_out[pos++] = length;
        } else if(length <= 65535) {
            Buffer_out[pos++] = 126;
            Buffer_out[pos++] = (length >> 8) & 0xff;
            Buffer_out[pos++] = length & 0xff;

        } else {
            Buffer_out[pos++] = 127;
            memset(Buffer_out + pos, 0, 8);

            for (int i = 7; i >= 0; i--){
                Buffer_out[pos++] = (length >> 8*i) & 0xff;
            }
        }
        Buffer_out[pos++] = opr;
        memcpy(Buffer_out + pos, cad, length);

    }
    printf("0: %d, 1: %d, 2: %d, 3: %d, 4: %d. Pos = %d\n", Buffer_out[0], Buffer_out[1], Buffer_out[2], Buffer_out[3], Buffer_out[4], pos);
    printf("%s\n", Buffer_out + pos);
    result = SendBytes(Buffer_out, length + pos);

    return result;
}

int CSocketNode::SendBytes(char *cad, int length){
    //Send it
    int err = send(socket_conn, cad, length,0);
    if (err == SOCKET_ERROR ){
        Error("SendBytes Error");
        return -1;
    }
    return 0;
}

IF句子的第一部分是针对我的非网络浏览器客户端,它完美运行。

无论数据框的大小是小于125还是小于65535,结果都是一样的。

也许我错过了什么。也许我喜欢在消息的wnd添加和FIN消息。但根据WebSocket手册,它是消息的第一位,表明它是否是多条消息。

如果你能告诉我它是什么我将非常感激。

1 个答案:

答案 0 :(得分:0)

我自己解决了。由于某种原因,我无法猜测,memcpy使套接字管道无法正常工作。

所以我使用for循环将消息复制到缓冲区。并解决了。