aboutsummaryrefslogtreecommitdiff
path: root/src/network/socket.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Make logging cost free when there is no output target (#12247)paradust72022-05-041-2/+2
| | | | | The logging streams now do almost no work when there is no output target for them. For example, if LL_VERBOSE has no output targets, then `verbosestream << x` will return a StreamProxy with a null target. Any further `<<` operations applied to it will do nothing.
* Deal with compiler warningssfan52022-04-301-2/+2
|
* Socket-related cleanupssfan52021-12-291-37/+37
| | | Improve error handling on Windows and reduce the size of the `Address` class
* Fix ipv6_server=true not accepting IPv4 connections on Windows (#7471)sfan52018-06-221-0/+9
|
* Network cleanup (#6302)Loïc Blot2017-08-241-0/+363
* Cleanup network headers * Move peerhandler to a specific header to reduce compilation times * Move socket.cpp/h to network folder * More work * Network code cleanups * Move socket.{cpp,h} to network folder * Move Address object to network/address.{cpp,h} * Move network exceptions to network/networkexceptions.h * Client: use unique_ptr for Connection * Server/ClientIface: use shared_ptr for Connection * Format fixes * Remove socket.cpp socket.h from clang-format whitelist * Also fix NetworkPacket code style & make it under clang-format