diff options
-rw-r--r-- | src/Makefile.am | 2 | ||||
-rw-r--r-- | src/netgroup.cpp | 5 | ||||
-rw-r--r-- | src/netgroup.h | 13 |
3 files changed, 20 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index c089bed0c9..476ff0a6c5 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -180,6 +180,7 @@ BITCOIN_CORE_H = \ net_types.h \ netaddress.h \ netbase.h \ + netgroup.h \ netmessagemaker.h \ node/blockstorage.h \ node/caches.h \ @@ -352,6 +353,7 @@ libbitcoin_node_a_SOURCES = \ init.cpp \ mapport.cpp \ net.cpp \ + netgroup.cpp \ net_processing.cpp \ node/blockstorage.cpp \ node/caches.cpp \ diff --git a/src/netgroup.cpp b/src/netgroup.cpp new file mode 100644 index 0000000000..17a48ad025 --- /dev/null +++ b/src/netgroup.cpp @@ -0,0 +1,5 @@ +// Copyright (c) 2021 The Bitcoin Core developers +// Distributed under the MIT software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + +#include <netgroup.h> diff --git a/src/netgroup.h b/src/netgroup.h new file mode 100644 index 0000000000..1fd3470e0f --- /dev/null +++ b/src/netgroup.h @@ -0,0 +1,13 @@ +// Copyright (c) 2021 The Bitcoin Core developers +// Distributed under the MIT software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + +#ifndef BITCOIN_NETGROUP_H +#define BITCOIN_NETGROUP_H + +/** + * Netgroup manager + */ +class NetGroupManager {}; + +#endif // BITCOIN_NETGROUP_H |