Skip to content

Commit 9b38367

Browse files
committed
[build] Add netgroup.cpp|h
These aren't used yet.
1 parent 9076597 commit 9b38367

File tree

3 files changed

+20
-0
lines changed

3 files changed

+20
-0
lines changed

src/Makefile.am

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,7 @@ BITCOIN_CORE_H = \
180180
net_types.h \
181181
netaddress.h \
182182
netbase.h \
183+
netgroup.h \
183184
netmessagemaker.h \
184185
node/blockstorage.h \
185186
node/caches.h \
@@ -352,6 +353,7 @@ libbitcoin_node_a_SOURCES = \
352353
init.cpp \
353354
mapport.cpp \
354355
net.cpp \
356+
netgroup.cpp \
355357
net_processing.cpp \
356358
node/blockstorage.cpp \
357359
node/caches.cpp \

src/netgroup.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
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>

src/netgroup.h

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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

0 commit comments

Comments
 (0)