IXWebSocket/ixwebsocket/IXWebSocketSendInfo.h
Benjamin Sergeant c64bc20bb5 cleanup
2018-11-14 15:52:28 -08:00

31 lines
593 B
C++

/*
* IXWebSocketSendInfo.h
* Author: Benjamin Sergeant
* Copyright (c) 2018 Machine Zone, Inc. All rights reserved.
*/
#pragma once
#include <string>
#include <iostream>
namespace ix
{
struct WebSocketSendInfo
{
bool success;
bool compressionError;
size_t payloadSize;
size_t wireSize;
WebSocketSendInfo(bool s = false, bool c = false,
size_t p = 0, size_t w = 0)
{
success = s;
compressionError = c;
payloadSize = p;
wireSize = w;
}
};
}