/usr/include/jsonrpccpp/server/iclientconnectionhandler.h is in libjsonrpccpp-dev 0.6.0-2build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | /*************************************************************************
* libjson-rpc-cpp
*************************************************************************
* @file iclientconnectionhandler.h
* @date 10/23/2014
* @author Peter Spiess-Knafl <peter.knafl@gmail.com>
* @license See attached LICENSE.txt
************************************************************************/
#ifndef JSONRPC_CPP_ICLIENTCONNECTIONHANDLER_H
#define JSONRPC_CPP_ICLIENTCONNECTIONHANDLER_H
#include <string>
namespace jsonrpc
{
class Procedure;
class IClientConnectionHandler {
public:
virtual ~IClientConnectionHandler() {}
virtual void HandleRequest(const std::string& request, std::string& retValue) = 0;
};
class IProtocolHandler : public IClientConnectionHandler
{
public:
virtual ~IProtocolHandler(){}
virtual void AddProcedure(const Procedure& procedure) = 0;
};
}
#endif // JSONRPC_CPP_ICLIENTCONNECTIONHANDLER_H
|