You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/include/llarp/service/handler.hpp

17 lines
311 B
C++

#ifndef LLARP_SERVICE_HANDLER_HPP
#define LLARP_SERVICE_HANDLER_HPP
#include <llarp/service/protocol.hpp>
namespace llarp
{
namespace service
{
struct IDataHandler
{
virtual void
HandleDataMessage(ProtocolMessage* msg) = 0;
};
} // namespace service
} // namespace llarp
#endif