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.
15 lines
356 B
C++
15 lines
356 B
C++
#ifndef _HP_USR_USER_COMM_SERVER_
|
|
#define _HP_USR_USER_COMM_SERVER_
|
|
|
|
#include "../comm/comm_server.hpp"
|
|
#include "user_comm_session.hpp"
|
|
|
|
namespace usr
|
|
{
|
|
class user_comm_server : public comm::comm_server<user_comm_session>
|
|
{
|
|
using comm::comm_server<user_comm_session>::comm_server; // Inherit constructors.
|
|
};
|
|
} // namespace usr
|
|
|
|
#endif |