mirror of
https://github.com/EvernodeXRPL/hpcore.git
synced 2026-04-29 15:37:59 +00:00
* Introduced self comm channel instead of loopback websocket. * Introduced comm_session and comm_server inheritance hierarchy. * Separated peer session and user session classes.
12 lines
205 B
C++
12 lines
205 B
C++
#ifndef _HP_P2P_SELF_NODE_
|
|
#define _HP_P2P_SELF_NODE_
|
|
|
|
#include "../pchheader.hpp"
|
|
|
|
namespace p2p::self
|
|
{
|
|
int process_next_message();
|
|
void send(std::string_view message);
|
|
|
|
} // namespace p2p
|
|
#endif |