aboutsummaryrefslogtreecommitdiff
path: root/src/makefile.osx
diff options
context:
space:
mode:
authorPieter Wuille <[email protected]>2012-01-03 23:33:31 +0100
committerPieter Wuille <[email protected]>2012-01-06 18:55:37 +0100
commit67a42f929b1434f647c63922fd02dc2b93b28060 (patch)
tree9c4313e815bd77e817f2dc5b796347d343458d0e /src/makefile.osx
parentMerge pull request #740 from TheBlueMatt/perf (diff)
downloaddiscoin-67a42f929b1434f647c63922fd02dc2b93b28060.tar.xz
discoin-67a42f929b1434f647c63922fd02dc2b93b28060.zip
Network stack refactor
This introduces CNetAddr and CService, respectively wrapping an (IPv6) IP address and an IP+port combination. This functionality used to be part of CAddress, which also contains network flags and connection attempt information. These extra fields are however not always necessary. These classes, along with logic for creating connections and doing name lookups, are moved to netbase.{h,cpp}, which does not depend on headers.h. Furthermore, CNetAddr is mostly IPv6-ready, though IPv6 functionality is not yet enabled for the application itself.
Diffstat (limited to 'src/makefile.osx')
-rw-r--r--src/makefile.osx2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/makefile.osx b/src/makefile.osx
index 966829e22..4c124e6f3 100644
--- a/src/makefile.osx
+++ b/src/makefile.osx
@@ -51,6 +51,7 @@ HEADERS = \
base58.h \
bignum.h \
checkpoints.h \
+ compat.h \
crypter.h \
db.h \
headers.h \
@@ -72,6 +73,7 @@ HEADERS = \
OBJS= \
obj/checkpoints.o \
+ obj/netbase.o \
obj/crypter.o \
obj/key.o \
obj/db.o \