summaryrefslogtreecommitdiffstats
path: root/src/core/network/sockets.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* general: Convert source file copyright comments over to SPDXMorph2022-04-231-3/+2
| | | | | This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
* service: bsd: Add keepalive socket optiontech-ticks2022-04-071-0/+2
|
* core: Reduce unused includesameerj2022-03-191-1/+0
|
* CMakeLists,network: Create YUZU_UNIX macro to replace __unix__comex2020-12-071-2/+2
| | | | __unix__ is not predefined on Apple platforms even though they are Unix.
* Revert "core: Fix clang build"bunnei2020-10-211-3/+3
|
* core: Fix clang buildLioncash2020-10-181-3/+3
| | | | | | | Recent changes to the build system that made more warnings be flagged as errors caused building via clang to break. Fixes #4795
* core/network: Add network abstractionReinUsesLisp2020-07-191-0/+94
This commit adds a network abstraction designed to implement bsd:s but at the same time work as a generic abstraction to implement any networking code we have to use from core. This is implemented on top of BSD sockets on Unix systems and winsock on Windows. The code is designed around winsocks having compatibility definitions to support both BSD and Windows sockets.