IXWebSocket/ixwebsocket/IXWebSocketErrorInfo.h

22 lines
364 B
C
Raw Normal View History

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