summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ldn (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-03-01service: move hle_ipc from kernelLiam2-38/+38
2023-02-21service: refactor server architectureLiam2-13/+12
Converts services to have their own processes
2023-02-03Revert "Merge pull request #9718 from yuzu-emu/revert-9508-hle-ipc-buffer-span"ameerj1-2/+2
This reverts commit 25fc5c0e1158cb8e81cbc769b24ad84032a1fbfd, reversing changes made to af20e25081f97d55b451606c87922e2b49f0d363.
2023-02-02Revert "hle_ipc: Use std::span to avoid heap allocations/copies when calling ReadBuffer"liamwhite1-2/+2
2022-12-29hle_ipc: Rename ReadBufferSpan to ReadBufferameerj1-2/+2
2022-12-25service: Use ReadBufferSpan where it is trivial to do soameerj1-2/+2
2022-11-23service: Make use of buffer element count helpersLioncash1-2/+2
2022-10-13kernel: remove KWritableEventLiam1-1/+1
2022-09-20Address some review commentsFearlessTobi4-48/+34
2022-09-09ldn: Initial implementationFearlessTobi4-116/+940
2022-09-02Address review commentsFearlessTobi1-13/+6
2022-08-27core/ldn_types: Minor corrections and additionsFearlessTobi1-1/+16
2022-08-12core: ldn: Address review comments part 2german772-334/+297
2022-08-08core: ldn: Address review commentsNarr the Reg4-56/+46
2022-08-07ldn: Add better stubs and more data typesFearlessTobi5-71/+771
Co-Authored-By: Narr the Reg <5944268+german77@users.noreply.github.com> Co-Authored-By: Morph <39850852+Morph1984@users.noreply.github.com>
2022-06-27core: Replace all instances of ResultCode with Resultgerman771-1/+1
2022-04-23general: Convert source file copyright comments over to SPDXMorph3-9/+6
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.
2021-06-02general: Replace RESULT_SUCCESS with ResultSuccessMorph1-8/+8
Transition to PascalCase for result names.
2021-05-26ldn: Add and stub lp2p:sys lp2p:app INetworkServiceMonitor INetworkServicegerman771-0/+141
2021-02-27core: hle: ldn: Error out on call to Initialization.bunnei1-1/+1
- Since we do not emulate LDN, returning an error here makes more sense.
2021-02-14hle: service: ldn: IUserLocalCommunicationService: Improve the stub.bunnei1-5/+29
2021-02-14hle: service: ldn: IUserLocalCommunicationService: Indicate that LDN is disabled.bunnei2-3/+18
- Fixes crash on Pokemon Sword/Shield when pressing 'Y'.
2020-11-27service: Eliminate usages of the global system instanceLioncash2-15/+20
Completely removes all usages of the global system instance within the services code by passing in the using system instance to the services.
2020-06-27ldn: Update function tableVolcaEM1-0/+1
This was based on Switchbrew page: https://switchbrew.org/wiki/LDN_services
2020-02-16IUserLocalCommunicationService: add function Initialize2Nguyen Dac Nam1-1/+9
2020-02-16HLE: correct function name of IUserLocalCommunicationServiceNguyen Dac Nam1-1/+1
402: function name should be Initialize2 (7.0.0+) not SetOperationMode Follow by: https://switchbrew.org/wiki/LDN_services#IUserLocalCommunicationService
2019-04-11service: Update service function tablesLioncash1-4/+50
Updates function tables based off information from SwitchBrew.
2018-11-26Changed logging to be "Log before execution", Added more error logging, all services should now log on some levelDavid Marcec1-6/+6
2018-07-26service: Add ldn servicesLioncash2-0/+158
Adds ldn services based off information provided by Switch Brew.