如何从包含c ++结构的websocket转换数据包

时间:2017-02-16 02:52:52

标签: javascript c++ struct casting

我有这个结构,使用websocket发送给客户端。

struct packet
{
    TYPE type;      //4 byte
    int size;       //4 byte
    bool property1; //1 byte
    bool property2; //1 byte 
    bool property3; //1 byte
};

数据包的大小为11个字节。有没有办法可以在JS中使用该结构创建一个对象,并将我收到的数据转换为该结构?谢谢!

0 个答案:

没有答案