summaryrefslogtreecommitdiff
path: root/src/core/hle/service/ssl
diff options
context:
space:
mode:
authorGravatar Lioncash2019-11-12 08:54:58 -0500
committerGravatar Lioncash2019-11-12 10:32:56 -0500
commite21b6ff79ddf7109db6f49e503e2c2e59fe466c7 (patch)
tree1c9437b9426af14d3af0566be6d385aea85d16a9 /src/core/hle/service/ssl
parentMerge pull request #3085 from bunnei/web-token-b64 (diff)
downloadyuzu-e21b6ff79ddf7109db6f49e503e2c2e59fe466c7.tar.gz
yuzu-e21b6ff79ddf7109db6f49e503e2c2e59fe466c7.tar.xz
yuzu-e21b6ff79ddf7109db6f49e503e2c2e59fe466c7.zip
service: Update function tables
Keeps the function tables up to date. Updated based off information from Switchbrew.
Diffstat (limited to 'src/core/hle/service/ssl')
-rw-r--r--src/core/hle/service/ssl/ssl.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/hle/service/ssl/ssl.cpp b/src/core/hle/service/ssl/ssl.cpp
index 65040c077..1ba8c19a0 100644
--- a/src/core/hle/service/ssl/ssl.cpp
+++ b/src/core/hle/service/ssl/ssl.cpp
@@ -13,6 +13,7 @@ namespace Service::SSL {
13class ISslConnection final : public ServiceFramework<ISslConnection> { 13class ISslConnection final : public ServiceFramework<ISslConnection> {
14public: 14public:
15 ISslConnection() : ServiceFramework("ISslConnection") { 15 ISslConnection() : ServiceFramework("ISslConnection") {
16 // clang-format off
16 static const FunctionInfo functions[] = { 17 static const FunctionInfo functions[] = {
17 {0, nullptr, "SetSocketDescriptor"}, 18 {0, nullptr, "SetSocketDescriptor"},
18 {1, nullptr, "SetHostName"}, 19 {1, nullptr, "SetHostName"},
@@ -40,7 +41,11 @@ public:
40 {23, nullptr, "GetOption"}, 41 {23, nullptr, "GetOption"},
41 {24, nullptr, "GetVerifyCertErrors"}, 42 {24, nullptr, "GetVerifyCertErrors"},
42 {25, nullptr, "GetCipherInfo"}, 43 {25, nullptr, "GetCipherInfo"},
44 {26, nullptr, "SetNextAlpnProto"},
45 {27, nullptr, "GetNextAlpnProto"},
43 }; 46 };
47 // clang-format on
48
44 RegisterHandlers(functions); 49 RegisterHandlers(functions);
45 } 50 }
46}; 51};