File tree Expand file tree Collapse file tree 3 files changed +20
-0
lines changed Expand file tree Collapse file tree 3 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -180,6 +180,7 @@ BITCOIN_CORE_H = \
180
180
net_types.h \
181
181
netaddress.h \
182
182
netbase.h \
183
+ netgroup.h \
183
184
netmessagemaker.h \
184
185
node/blockstorage.h \
185
186
node/caches.h \
@@ -352,6 +353,7 @@ libbitcoin_node_a_SOURCES = \
352
353
init.cpp \
353
354
mapport.cpp \
354
355
net.cpp \
356
+ netgroup.cpp \
355
357
net_processing.cpp \
356
358
node/blockstorage.cpp \
357
359
node/caches.cpp \
Original file line number Diff line number Diff line change
1
+ // Copyright (c) 2021 The Bitcoin Core developers
2
+ // Distributed under the MIT software license, see the accompanying
3
+ // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
+
5
+ #include < netgroup.h>
Original file line number Diff line number Diff line change
1
+ // Copyright (c) 2021 The Bitcoin Core developers
2
+ // Distributed under the MIT software license, see the accompanying
3
+ // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
+
5
+ #ifndef BITCOIN_NETGROUP_H
6
+ #define BITCOIN_NETGROUP_H
7
+
8
+ /* *
9
+ * Netgroup manager
10
+ */
11
+ class NetGroupManager {};
12
+
13
+ #endif // BITCOIN_NETGROUP_H
You can’t perform that action at this time.
0 commit comments