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

22 lines
365 B
C++

/*
* IXWebSocketErrorInfo.h
* Author: Benjamin Sergeant
* Copyright (c) 2017-2018 Machine Zone, Inc. All rights reserved.
*/
#pragma once
#include <string>
namespace ix
{
struct WebSocketErrorInfo
{
uint64_t retries;
double wait_time;
int http_status;
std::string reason;
bool decompressionError;
};
}