diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-07-10 12:13:03 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-07-17 15:46:25 +0200 |
commit | 43f510d37d680ca4347878d2fb6f8b97b54e7611 (patch) | |
tree | 137cb51c1953826cd595584e8371d5fbd4b2ccb3 /src/net.h | |
parent | c4f11ca9c32a90c57bd26eb38e5a264a95baba41 (diff) |
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.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -357,8 +357,7 @@ public: { if (hSocket != INVALID_SOCKET) { - closesocket(hSocket); - hSocket = INVALID_SOCKET; + CloseSocket(hSocket); } if (pfilter) delete pfilter; |