mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-10-10 11:33:46 +02:00
[build] Add netgroup.cpp|h
These aren't used yet.
This commit is contained in:
@@ -180,6 +180,7 @@ BITCOIN_CORE_H = \
|
|||||||
net_types.h \
|
net_types.h \
|
||||||
netaddress.h \
|
netaddress.h \
|
||||||
netbase.h \
|
netbase.h \
|
||||||
|
netgroup.h \
|
||||||
netmessagemaker.h \
|
netmessagemaker.h \
|
||||||
node/blockstorage.h \
|
node/blockstorage.h \
|
||||||
node/caches.h \
|
node/caches.h \
|
||||||
@@ -352,6 +353,7 @@ libbitcoin_node_a_SOURCES = \
|
|||||||
init.cpp \
|
init.cpp \
|
||||||
mapport.cpp \
|
mapport.cpp \
|
||||||
net.cpp \
|
net.cpp \
|
||||||
|
netgroup.cpp \
|
||||||
net_processing.cpp \
|
net_processing.cpp \
|
||||||
node/blockstorage.cpp \
|
node/blockstorage.cpp \
|
||||||
node/caches.cpp \
|
node/caches.cpp \
|
||||||
|
5
src/netgroup.cpp
Normal file
5
src/netgroup.cpp
Normal file
@@ -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>
|
13
src/netgroup.h
Normal file
13
src/netgroup.h
Normal file
@@ -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
|
Reference in New Issue
Block a user