mirror of
https://github.com/HikikoMarmy/Champions-Reborn-Server.git
synced 2026-04-04 16:49:47 -03:00
Reorganized and cleaned up the solution.
This commit is contained in:
19
Include/Network/Event/NotifyClientRequestConnect_RTA.hpp
Normal file
19
Include/Network/Event/NotifyClientRequestConnect_RTA.hpp
Normal file
@@ -0,0 +1,19 @@
|
||||
#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;
|
||||
};
|
||||
Reference in New Issue
Block a user