aboutsummaryrefslogtreecommitdiff
path: root/src/makefile.mingw
diff options
context:
space:
mode:
authorGiel van Schijndel <me@mortis.eu>2011-08-11 18:14:53 +0200
committerGiel van Schijndel <me@mortis.eu>2011-08-19 07:24:38 +0200
commit507fd9d15baac950df494742d67bcbafdaa4752c (patch)
treea705b7990df0a9f61f09dce2e4461017f7cbc0d8 /src/makefile.mingw
parent82dc6426b4cbf769ace7976c2a40d160b8d76f08 (diff)
downloadbitcoin-507fd9d15baac950df494742d67bcbafdaa4752c.tar.xz
Start moving protocol-specific code to protocol.[ch]pp
Move CMessageHeader from net.h to protocol.[ch]pp, with the implementation in the .cpp compilation unit (compiling once is enough). This commit does *not* and should not modify *any* code, it only moves it from net.h and splits it across protocol.cpp and protocol.hpp. Indentation changes aside the closest thing to a modification of code is the addition of the 'TODO' comment (the execution of which requires code modifications and thus doesn't belong in this commit). Signed-off-by: Giel van Schijndel <me@mortis.eu>
Diffstat (limited to 'src/makefile.mingw')
-rw-r--r--src/makefile.mingw2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/makefile.mingw b/src/makefile.mingw
index 55cb8a7058..893700b882 100644
--- a/src/makefile.mingw
+++ b/src/makefile.mingw
@@ -45,6 +45,7 @@ HEADERS = \
main.h \
net.h \
noui.h \
+ protocol.h \
rpc.h \
script.h \
serialize.h \
@@ -72,6 +73,7 @@ OBJS= \
obj/keystore.o \
obj/main.o \
obj/net.o \
+ obj/protocol.o \
obj/rpc.o \
obj/script.o \
obj/util.o \