Searched defs:ProtocolHandler (Results 1 - 3 of 3) sorted by relevance

/system/webservd/libwebserv/
H A Dprotocol_handler.h32 // ProtocolHandler allows consumers to add request handlers on a given protocol.
33 // When the ProtocolHandler is connected, allows users to read port and protocol
35 class LIBWEBSERV_EXPORT ProtocolHandler { class in namespace:libwebserv
37 ProtocolHandler() = default;
38 virtual ~ProtocolHandler() = default;
40 // Returns true if the protocol handler object is backed by a ProtocolHandler
85 // The handler registration information is stored inside ProtocolHandler and
109 DISALLOW_COPY_AND_ASSIGN(ProtocolHandler);
/system/webservd/webservd/
H A Dprotocol_handler.cc49 auto handler = reinterpret_cast<ProtocolHandler*>(cls);
87 ProtocolHandler::ProtocolHandler(const std::string& name, function in class:webservd::ProtocolHandler
93 ProtocolHandler::~ProtocolHandler() {
97 std::string ProtocolHandler::AddRequestHandler(
107 bool ProtocolHandler::RemoveRequestHandler(const std::string& handler_id) {
111 std::string ProtocolHandler::FindRequestHandler(
155 bool ProtocolHandler::Start(Config::ProtocolHandler* confi
[all...]
H A Dconfig.cc59 Config::ProtocolHandler* handler_config,
95 Config::ProtocolHandler::~ProtocolHandler() {
168 Config::ProtocolHandler handler_config;

Completed in 314 milliseconds