Files
hpcore/src/p2p/self_node.hpp
Ravin Perera 3ea0299964 Comm session re-architecture and self comm channel. (#145)
* Introduced self comm channel instead of loopback websocket.
* Introduced comm_session and comm_server inheritance hierarchy.
* Separated peer session and user session classes.
2020-11-08 22:14:08 +05:30

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