mirror of
https://github.com/Icinga/icinga2.git
synced 2025-08-16 07:08:18 +02:00
These parameters are no longer needed since they were only used by EventsHandler which was refactored in an earlier commit.
24 lines
385 B
C++
24 lines
385 B
C++
/* Icinga 2 | (c) 2024 Icinga GmbH | GPLv2+ */
|
|
|
|
#pragma once
|
|
|
|
#include "remote/httphandler.hpp"
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
class MallocInfoHandler final : public HttpHandler
|
|
{
|
|
public:
|
|
DECLARE_PTR_TYPEDEFS(MallocInfoHandler);
|
|
|
|
bool HandleRequest(
|
|
const WaitGroup::Ptr& waitGroup,
|
|
const HttpRequest& request,
|
|
HttpResponse& response,
|
|
boost::asio::yield_context& yc
|
|
) override;
|
|
};
|
|
|
|
}
|