summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/sockets/sockets.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* service: Eliminate usages of the global system instanceLioncash2020-11-271-6/+6
| | | | | Completely removes all usages of the global system instance within the services code by passing in the using system instance to the services.
* services/bsd: Implement most of bsd:sReinUsesLisp2020-07-281-3/+3
| | | | | | | | | | | | | This implements: Socket, Poll, Accept, Bind, Connect, GetPeerName, GetSockName, Listen, Fcntl, SetSockOpt, Shutdown, Recv, RecvFrom, Send, SendTo, Write, and Close The implementation was done referencing: SwIPC, switchbrew, testing with libnx and inspecting its code, general information about bsd sockets online, and analysing official software. Not everything from these service calls is implemented, but everything that is not implemented will be logged in some way.
* service/sockets: Add ethc:c and ethc:i servicesLioncash2018-07-261-0/+5
|
* service/sockets: Add missing bsdcfg socket serviceLioncash2018-07-261-0/+2
|
* service: Use nested namespace specifiers where applicableLioncash2018-04-201-4/+2
| | | | Tidies up namespace declarations
* Service/sockets: add bsd:s, nsd:a, nsd:u servicesmailwl2018-03-251-2/+6
|
* Start to implement/stub BSD:U and SFDNSRES services (#78)flerovium^-^2018-01-181-0/+18
* bsd: start stubbing bsd:u and sfdnsres * bsd: stubbed RegisterClient * bsd: attempt to get past socket() * bsd: fix some wrong assumptions about IPC * bsd: fix format specifiers * bsd: stubbed Connect() * bsd: stubbed SendTo() * made requested changes * sockets: respect alphabetical order at service installation * run clang-format * bsd: start stubbing bsd:u and sfdnsres * bsd: stubbed RegisterClient * bsd: attempt to get past socket() * bsd: fix some wrong assumptions about IPC * bsd: fix format specifiers * bsd: stubbed Connect() * bsd: stubbed SendTo() * made requested changes * sockets: respect alphabetical order at service installation * run clang-format * run clang-format (2)