2016-11-10 23:05:23 +01:00
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
2018-01-02 18:12:05 +01:00
|
|
|
// Copyright (c) 2009-2017 The Bitcoin Core developers
|
2016-11-10 23:05:23 +01:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
#ifndef BITCOIN_NETMESSAGEMAKER_H
|
|
|
|
#define BITCOIN_NETMESSAGEMAKER_H
|
|
|
|
|
2017-11-10 01:57:53 +01:00
|
|
|
#include <net.h>
|
|
|
|
#include <serialize.h>
|
2016-11-10 23:05:23 +01:00
|
|
|
|
|
|
|
class CNetMsgMaker
|
|
|
|
{
|
|
|
|
public:
|
2017-08-01 12:22:41 +02:00
|
|
|
explicit CNetMsgMaker(int nVersionIn) : nVersion(nVersionIn){}
|
2016-11-10 23:05:23 +01:00
|
|
|
|
|
|
|
template <typename... Args>
|
2017-01-31 22:57:40 +01:00
|
|
|
CSerializedNetMsg Make(int nFlags, std::string sCommand, Args&&... args) const
|
2016-11-10 23:05:23 +01:00
|
|
|
{
|
|
|
|
CSerializedNetMsg msg;
|
|
|
|
msg.command = std::move(sCommand);
|
|
|
|
CVectorWriter{ SER_NETWORK, nFlags | nVersion, msg.data, 0, std::forward<Args>(args)... };
|
|
|
|
return msg;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename... Args>
|
2017-01-31 22:57:40 +01:00
|
|
|
CSerializedNetMsg Make(std::string sCommand, Args&&... args) const
|
2016-11-10 23:05:23 +01:00
|
|
|
{
|
|
|
|
return Make(0, std::move(sCommand), std::forward<Args>(args)...);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
const int nVersion;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // BITCOIN_NETMESSAGEMAKER_H
|