LCOV - code coverage report
Current view: top level - src - netmessagemaker.h (source / functions) Hit Total Coverage
Test: coverage.lcov Lines: 10 10 100.0 %
Date: 2021-06-29 14:35:33 Functions: 41 45 91.1 %
Legend: Modified by patch:
Lines: hit not hit | Branches: + taken - not taken # not executed

Not modified by patch:
Lines: hit not hit | Branches: + taken - not taken # not executed
Branches: 0 0 -

           Branch data     Line data    Source code
#       1                 :            : // Copyright (c) 2009-2010 Satoshi Nakamoto
#       2                 :            : // Copyright (c) 2009-2020 The Bitcoin Core developers
#       3                 :            : // Distributed under the MIT software license, see the accompanying
#       4                 :            : // file COPYING or http://www.opensource.org/licenses/mit-license.php.
#       5                 :            : 
#       6                 :            : #ifndef BITCOIN_NETMESSAGEMAKER_H
#       7                 :            : #define BITCOIN_NETMESSAGEMAKER_H
#       8                 :            : 
#       9                 :            : #include <net.h>
#      10                 :            : #include <serialize.h>
#      11                 :            : 
#      12                 :            : class CNetMsgMaker
#      13                 :            : {
#      14                 :            : public:
#      15                 :    1330957 :     explicit CNetMsgMaker(int nVersionIn) : nVersion(nVersionIn){}
#      16                 :            : 
#      17                 :            :     template <typename... Args>
#      18                 :            :     CSerializedNetMsg Make(int nFlags, std::string msg_type, Args&&... args) const
#      19                 :     117288 :     {
#      20                 :     117288 :         CSerializedNetMsg msg;
#      21                 :     117288 :         msg.m_type = std::move(msg_type);
#      22                 :     117288 :         CVectorWriter{ SER_NETWORK, nFlags | nVersion, msg.data, 0, std::forward<Args>(args)... };
#      23                 :     117288 :         return msg;
#      24                 :     117288 :     }
#      25                 :            : 
#      26                 :            :     template <typename... Args>
#      27                 :            :     CSerializedNetMsg Make(std::string msg_type, Args&&... args) const
#      28                 :      92541 :     {
#      29                 :      92541 :         return Make(0, std::move(msg_type), std::forward<Args>(args)...);
#      30                 :      92541 :     }
#      31                 :            : 
#      32                 :            : private:
#      33                 :            :     const int nVersion;
#      34                 :            : };
#      35                 :            : 
#      36                 :            : #endif // BITCOIN_NETMESSAGEMAKER_H

Generated by: LCOV version 1.14