summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ssl (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-04-23general: Convert source file copyright comments over to SPDXMorph2-6/+4
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-10-07service: Reduce header include overheadMorph1-1/+0
2021-06-02general: Replace RESULT_SUCCESS with ResultSuccessMorph1-6/+6
Transition to PascalCase for result names.
2021-05-16nifm, ssl: Fix incorrect response sizesMorph1-1/+1
2021-05-13ssl: Stub Import(Client/Server)PkiMorph1-2/+40
- Used in JUMP FORCE Deluxe Edition
2020-11-27service: Eliminate usages of the global system instanceLioncash2-8/+12
Completely removes all usages of the global system instance within the services code by passing in the using system instance to the services.
2019-11-12service: Update function tablesLioncash1-0/+5
Keeps the function tables up to date. Updated based off information from Switchbrew.
2019-04-11service: Update service function tablesLioncash1-0/+2
Updates function tables based off information from SwitchBrew.
2019-04-04hle/service: Resolve unused variable warningsLioncash1-1/+8
In several places, we have request parsers where there's nothing to really parse, simply because the HLE function in question operates on buffers. In these cases we can just remove these instances altogether. In the other cases, we can retrieve the relevant members from the parser and at least log them out, giving them some use.
2019-04-04core: Add missing override specifiers where applicableLioncash1-1/+0
Applies the override specifier where applicable. In the case of destructors that are defaulted in their definition, they can simply be removed. This also removes the unnecessary inclusions being done in audin_u and audrec_u, given their close proximity.
2018-11-26Changed logging to be "Log before execution", Added more error logging, all services should now log on some levelDavid Marcec1-0/+2
2018-09-19Corrected SSL::SetInterfaceVersionDavid Marcec1-3/+3
Should be a single u32
2018-09-19Removed the use of rp.MakeBuilderDavid Marcec1-1/+1
Due to keeping the code style consistent in the yuzu codebase. `rb = rp.MakeBuilder(...)` was replaced with `rb{ctx, ...}`
2018-09-02ssl: Move SSL class to cpp fileLioncash2-37/+39
This isn't required to be visible to anything outside of the main source file, and will eliminate needing to rebuild anything else including the header if the SSL class needs to be changed in the future.
2018-07-03Rename logging macro back to LOG_*James Rowe1-4/+4
2018-04-27Switched to NGLOG_WARNINGDavid Marcec1-1/+1
2018-04-26Added PREPO to logging backend, Removed comments from SaveReportWithUserDavid Marcec1-1/+1
2018-04-24ssl: Move logging macros over to new fmt-compatible onesLioncash1-3/+3
2018-04-23GetIUserInterface->CreateUserInterface, Added todos and stub logs. Playreport->PlayReport.David Marcec1-0/+1
2018-04-22Implemented GetIUserInterface properly, Playreport and SSL::SetInterfaceVersion. Fixed ipc issues with IAudioDevice(wrong ids)David Marcec2-1/+11
2018-04-20service: Use nested namespace specifiers where applicableLioncash2-8/+4
Tidies up namespace declarations
2018-04-11Service/SSL: update service according switchbrewmailwl2-1/+98
2018-03-23Service/SSL: add ssl servicemailwl2-0/+39