mirror of
https://github.com/HikikoMarmy/Champions-Reborn-Server.git
synced 2026-04-04 08:49:47 -03:00
19 lines
405 B
C++
19 lines
405 B
C++
#pragma once
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
|
|
#include "../GenericNetMessage.hpp"
|
|
#include "Common/ForwardDecl.hpp"
|
|
|
|
class NotifyClientRequestConnect_RTA : public GenericMessage {
|
|
private:
|
|
std::string m_localAddr;
|
|
std::string m_remoteAddr;
|
|
int32_t m_localPort;
|
|
int32_t m_remotePort;
|
|
|
|
public:
|
|
NotifyClientRequestConnect_RTA( sptr_user user );
|
|
void Serialize( ByteBuffer &out ) const override;
|
|
}; |