Skip to content

Instantly share code, notes, and snippets.

@Kronos11
Created June 4, 2011 21:10
Show Gist options
  • Save Kronos11/1008368 to your computer and use it in GitHub Desktop.
Save Kronos11/1008368 to your computer and use it in GitHub Desktop.
Base packet
struct DataChannelMessage
{
DataChannelMessage(uint32_t session_id_, anh::ByteBuffer& data_)
: session_id(session_id_)
, data(data_)
{}
uint32_t session_id;
anh::ByteBuffer data;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment