187 lines
No EOL
4.1 KiB
C++
187 lines
No EOL
4.1 KiB
C++
#pragma once
|
|
#include <cstdint>
|
|
#include "rage/rlGamerInfoBase.hpp"
|
|
#include "netPeerAddress.hpp"
|
|
|
|
#pragma pack(push, 1)
|
|
namespace rage
|
|
{
|
|
class netConnectionManager;
|
|
class netConnectionPeer;
|
|
|
|
class netQueuedMessage
|
|
{
|
|
public:
|
|
void* m_data_buffer;
|
|
void* qword8;
|
|
void* qword10;
|
|
void* qword18;
|
|
rage::netQueuedMessage* m_next;
|
|
void* qword28;
|
|
char gap30[8];
|
|
int m_creation_time;
|
|
int m_last_send_time;
|
|
int m_resend_count;
|
|
char gap44[4];
|
|
int dword48;
|
|
uint16_t word4C;
|
|
char byte4E;
|
|
};
|
|
static_assert(sizeof(netQueuedMessage) == 0x4F);
|
|
|
|
class netMessageQueue
|
|
{
|
|
public:
|
|
rage::netQueuedMessage* m_first;
|
|
rage::netQueuedMessage* m_last;
|
|
uint64_t m_count;
|
|
};
|
|
|
|
class netPackedMessage
|
|
{
|
|
public:
|
|
void* m_data_buffer;
|
|
void* m_allocator;
|
|
void* qword10;
|
|
void* qword18;
|
|
};
|
|
|
|
class netPackedMessageQueue
|
|
{
|
|
public:
|
|
rage::netPackedMessage* m_first;
|
|
rage::netPackedMessage* m_last;
|
|
uint64_t m_count;
|
|
};
|
|
|
|
class netConnection
|
|
{
|
|
public:
|
|
class InFrame
|
|
{
|
|
public:
|
|
enum class EventType
|
|
{
|
|
ConnectionClosed = 3,
|
|
FrameReceived = 4,
|
|
BandwidthExceeded = 6,
|
|
OutOfMemory = 7
|
|
};
|
|
|
|
virtual ~InFrame() = default;
|
|
|
|
virtual void destroy() = 0;
|
|
virtual EventType get_event_type() = 0;
|
|
virtual uint32_t _0x18() = 0;
|
|
|
|
uint32_t m_timestamp; //0x0008
|
|
char pad_0008[52]; //0x000C
|
|
uint32_t m_msg_id; //0x0040
|
|
uint32_t m_connection_identifier; //0x0044
|
|
InFrame* m_this; //0x0048
|
|
uint32_t m_peer_id; //0x0050
|
|
char pad_0050[44]; //0x0058
|
|
uint32_t m_length; //0x0080
|
|
char pad_007C[4]; //0x0084
|
|
void* m_data; //0x0088
|
|
};
|
|
static_assert(sizeof(rage::netConnection::InFrame) == 0x90);
|
|
|
|
char gap0[8];
|
|
rage::netConnectionPeer* m_connection_peer;
|
|
int m_msg_id;
|
|
uint32_t m_connection_id;
|
|
void* m_allocator;
|
|
uint32_t m_connection_state;
|
|
uint32_t m_last_send_time;
|
|
uint32_t m_last_receive_time;
|
|
uint32_t m_num_failed_messages;
|
|
char gap30[8];
|
|
uint32_t m_timeout_reason;
|
|
uint32_t dword3C;
|
|
uint32_t m_timeout;
|
|
uint32_t dword44;
|
|
uint32_t m_resend_threshold;
|
|
char gap4C[4];
|
|
rage::netMessageQueue m_reliables_resend_queue;
|
|
rage::netMessageQueue m_normal_message_queue;
|
|
rage::netQueuedMessage* m_unacked_reliable_message_list;
|
|
int m_unacked_reliable_message_count;
|
|
char gap8C[36];
|
|
netConnectionManager* m_net_connection_mgr;
|
|
char gapB8[8];
|
|
uint32_t dwordC0;
|
|
int16_t m_msg_counter;
|
|
int16_t wordC6;
|
|
char gapC8[2];
|
|
int16_t m_last_reliable_msg_counter;
|
|
char m_flags;
|
|
char gapCD[3];
|
|
int m_failed_allocation_size;
|
|
int32_t m_failed_allocations;
|
|
rage::netConnection* m_next;
|
|
char gapE0[208];
|
|
int m_flags2;
|
|
char gap1B4[69];
|
|
};
|
|
static_assert(sizeof(netConnection) == 0x1F9);
|
|
|
|
class netConnectionQueue
|
|
{
|
|
public:
|
|
rage::netConnection* m_first;
|
|
rage::netConnection* m_last;
|
|
uint64_t m_count;
|
|
};
|
|
|
|
class netConnectionPeer
|
|
{
|
|
public:
|
|
rage::netConnection* m_connections_by_id[16];
|
|
rage::netConnectionQueue m_net_connection_queue;
|
|
rage::netPackedMessageQueue m_packed_message_queue;
|
|
void* qwordB0;
|
|
char byteB8;
|
|
char gapB9[3];
|
|
int intBC;
|
|
uint32_t dwordC0;
|
|
char gapC4[4];
|
|
void* qwordC8;
|
|
rage::netPeerAddress m_relay_address;
|
|
rage::rlGamerInfoBase m_gamer_info;
|
|
char gap1B0[24];
|
|
uint32_t dword1C8;
|
|
char gap1CC[28];
|
|
uint32_t m_security_id;
|
|
char gap1EC[28];
|
|
void* qword208;
|
|
char gap210[24];
|
|
rage::netPeerAddress m_peer_address;
|
|
rage::netConnectionPeer* m_next;
|
|
char gap250[8];
|
|
int m_time_until_next_batch;
|
|
int m_empty_batch_interval;
|
|
uint32_t m_time_until_timeout;
|
|
int m_last_msg_process_time;
|
|
int gap268;
|
|
void* qword26C;
|
|
char gap274[4];
|
|
void* qword278;
|
|
char gap280[24];
|
|
void* qword298;
|
|
char gap2A0[64];
|
|
uint32_t m_peer_id;
|
|
char byte2E4;
|
|
char more[51];
|
|
int gap318;
|
|
char gap31C[24];
|
|
int m_num_encryption_attempts;
|
|
char gap338[60];
|
|
int m_num_messages_batched;
|
|
int m_num_reliable_messages_batched;
|
|
int m_num_resent_reliable_messages_batched;
|
|
char gap380[145];
|
|
};
|
|
static_assert(sizeof(netConnectionPeer) == 0x411);
|
|
}
|
|
#pragma pack(pop) |