mirror of
https://github.com/YimMenu/RDR-Classes.git
synced 2025-01-03 16:13:23 +08:00
24 lines
327 B
C++
24 lines
327 B
C++
|
#pragma once
|
||
|
#include <cstdint>
|
||
|
|
||
|
namespace rage
|
||
|
{
|
||
|
class atUri
|
||
|
{
|
||
|
public:
|
||
|
enum ProtocolType
|
||
|
{
|
||
|
HTTP,
|
||
|
HTTPS,
|
||
|
WS,
|
||
|
WSS
|
||
|
};
|
||
|
|
||
|
ProtocolType m_ProtocolType;
|
||
|
char m_Host[128];
|
||
|
std::int16_t m_Port;
|
||
|
char m_Path[512];
|
||
|
char m_QueryString[512];
|
||
|
};
|
||
|
static_assert(sizeof(atUri) == 0x488);
|
||
|
}
|