2021-08-22 10:20:59 +00:00
|
|
|
/*
|
|
|
|
* This file is part of the Monero P2Pool <https://github.com/SChernykh/p2pool>
|
2023-01-04 12:07:55 +00:00
|
|
|
* Copyright (c) 2021-2023 SChernykh <https://github.com/SChernykh>
|
2021-08-22 10:20:59 +00:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, version 3.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace p2pool {
|
2022-06-04 11:16:05 +00:00
|
|
|
namespace JSONRPCRequest {
|
2021-08-22 10:20:59 +00:00
|
|
|
|
2023-06-19 15:54:22 +00:00
|
|
|
typedef Callback<void, const char*, size_t, double>::Base CallbackBase;
|
2021-08-22 10:20:59 +00:00
|
|
|
|
2022-08-31 14:37:33 +00:00
|
|
|
void Call(const std::string& address, int port, const std::string& req, const std::string& auth, const std::string& proxy, CallbackBase* cb, CallbackBase* close_cb, uv_loop_t* loop);
|
2021-08-22 10:20:59 +00:00
|
|
|
|
2022-06-04 11:16:05 +00:00
|
|
|
template<typename T, typename U>
|
2022-08-31 14:37:33 +00:00
|
|
|
FORCEINLINE void call(const std::string& address, int port, const std::string& req, const std::string& auth, const std::string& proxy, T&& cb, U&& close_cb, uv_loop_t* loop = nullptr)
|
2022-06-04 11:16:05 +00:00
|
|
|
{
|
2023-06-19 15:54:22 +00:00
|
|
|
typedef Callback<void, const char*, size_t, double>::Derived<T> CallbackT;
|
|
|
|
typedef Callback<void, const char*, size_t, double>::Derived<U> CallbackU;
|
2023-04-19 09:36:12 +00:00
|
|
|
|
|
|
|
Call(address, port, req, auth, proxy, new CallbackT(std::move(cb)), new CallbackU(std::move(close_cb)), loop);
|
2022-06-04 11:16:05 +00:00
|
|
|
}
|
2021-08-22 10:20:59 +00:00
|
|
|
|
2022-06-04 11:16:05 +00:00
|
|
|
} // namespace JSONRPCRequest
|
2021-08-22 10:20:59 +00:00
|
|
|
} // namespace p2pool
|