aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/ssl/ssl.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-11-24 20:30:58 -0500
committerGitHub <noreply@github.com>2019-11-24 20:30:58 -0500
commit50c7539108492fa5c326e06a823026f15b07d06a (patch)
tree1d7ab9588325efad6ff2fd3445ed13369c2defbf /src/core/hle/service/ssl/ssl.cpp
parent33a6b45a6cc9fef0cbb3b1f65372bb0641e57a21 (diff)
parente21b6ff79ddf7109db6f49e503e2c2e59fe466c7 (diff)
Merge pull request #3094 from lioncash/tables
service: Update function tables
Diffstat (limited to 'src/core/hle/service/ssl/ssl.cpp')
-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 {
class ISslConnection final : public ServiceFramework<ISslConnection> {
public:
ISslConnection() : ServiceFramework("ISslConnection") {
+ // clang-format off
static const FunctionInfo functions[] = {
{0, nullptr, "SetSocketDescriptor"},
{1, nullptr, "SetHostName"},
@@ -40,7 +41,11 @@ public:
{23, nullptr, "GetOption"},
{24, nullptr, "GetVerifyCertErrors"},
{25, nullptr, "GetCipherInfo"},
+ {26, nullptr, "SetNextAlpnProto"},
+ {27, nullptr, "GetNextAlpnProto"},
};
+ // clang-format on
+
RegisterHandlers(functions);
}
};