aboutsummaryrefslogtreecommitdiff
path: root/src/net.h
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2014-07-10 12:13:03 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2014-07-17 15:46:25 +0200
commit43f510d37d680ca4347878d2fb6f8b97b54e7611 (patch)
tree137cb51c1953826cd595584e8371d5fbd4b2ccb3 /src/net.h
parentc4f11ca9c32a90c57bd26eb38e5a264a95baba41 (diff)
downloadbitcoin-43f510d37d680ca4347878d2fb6f8b97b54e7611.tar.xz
Convert closesocket 'compat wrapper' to function in netbase
Simpler alternative to #4348. The current setup with closesocket() is strange. It poses as a compatibility wrapper but adds functionality. Rename it and make it a documented utility function in netbase. Code movement only, zero effect on the functionality.
Diffstat (limited to 'src/net.h')
-rw-r--r--src/net.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/net.h b/src/net.h
index 866c9ae783..f029a8d935 100644
--- a/src/net.h
+++ b/src/net.h
@@ -357,8 +357,7 @@ public:
{
if (hSocket != INVALID_SOCKET)
{
- closesocket(hSocket);
- hSocket = INVALID_SOCKET;
+ CloseSocket(hSocket);
}
if (pfilter)
delete pfilter;