summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ssl (follow)
Commit message (Collapse)AuthorAgeFilesLines
* general: Convert source file copyright comments over to SPDXMorph2022-04-232-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.
* service: Reduce header include overheadMorph2021-10-071-1/+0
|
* general: Replace RESULT_SUCCESS with ResultSuccessMorph2021-06-021-6/+6
| | | | Transition to PascalCase for result names.
* nifm, ssl: Fix incorrect response sizesMorph2021-05-161-1/+1
|
* ssl: Stub Import(Client/Server)PkiMorph2021-05-131-2/+40
| | | | - Used in JUMP FORCE Deluxe Edition
* service: Eliminate usages of the global system instanceLioncash2020-11-272-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.
* service: Update function tablesLioncash2019-11-121-0/+5
| | | | | | Keeps the function tables up to date. Updated based off information from Switchbrew.
* service: Update service function tablesLioncash2019-04-111-0/+2
| | | | Updates function tables based off information from SwitchBrew.
* Merge pull request #2334 from lioncash/overridebunnei2019-04-061-1/+0
|\ | | | | core: Add missing override specifiers where applicable
| * core: Add missing override specifiers where applicableLioncash2019-04-041-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.
* | hle/service: Resolve unused variable warningsLioncash2019-04-041-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.
* Changed logging to be "Log before execution", Added more error logging, all services should now log on some levelDavid Marcec2018-11-261-0/+2
|
* Merge pull request #1354 from ogniK5377/ssl-versionbunnei2018-09-241-3/+3
|\ | | | | Corrected SSL::SetInterfaceVersion
| * Corrected SSL::SetInterfaceVersionDavid Marcec2018-09-191-3/+3
| | | | | | | | Should be a single u32
* | Removed the use of rp.MakeBuilderDavid Marcec2018-09-191-1/+1
|/ | | | Due to keeping the code style consistent in the yuzu codebase. `rb = rp.MakeBuilder(...)` was replaced with `rb{ctx, ...}`
* ssl: Move SSL class to cpp fileLioncash2018-09-022-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.
* Rename logging macro back to LOG_*James Rowe2018-07-031-4/+4
|
* Switched to NGLOG_WARNINGDavid Marcec2018-04-271-1/+1
|
* Merge branch 'master' of https://github.com/yuzu-emu/yuzu into service-implDavid Marcec2018-04-261-3/+3
|\
| * ssl: Move logging macros over to new fmt-compatible onesLioncash2018-04-241-3/+3
| |
* | Added PREPO to logging backend, Removed comments from SaveReportWithUserDavid Marcec2018-04-261-1/+1
| |
* | GetIUserInterface->CreateUserInterface, Added todos and stub logs. Playreport->PlayReport.David Marcec2018-04-231-0/+1
| |
* | Implemented GetIUserInterface properly, Playreport and SSL::SetInterfaceVersion. Fixed ipc issues with IAudioDevice(wrong ids)David Marcec2018-04-222-1/+11
|/
* service: Use nested namespace specifiers where applicableLioncash2018-04-202-8/+4
| | | | Tidies up namespace declarations
* Service/SSL: update service according switchbrewmailwl2018-04-112-1/+98
|
* Service/SSL: add ssl servicemailwl2018-03-232-0/+39