aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/ssl_c.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-12-30 21:30:07 -0500
committerbunnei <bunneidev@gmail.com>2015-12-30 21:30:07 -0500
commit085c8f2987aa5fb56de042714be5546a5b6184c9 (patch)
tree4bc9cb1cedab769e82a84b7a77154872da87df57 /src/core/hle/service/ssl_c.cpp
parent54bdba750a2fe8a4af1408f9e9c0a4b17049c3ad (diff)
parent744f4af3ab797d8c4c456467c50661a04dd4931d (diff)
Merge pull request #1310 from lioncash/services
services: Update some function tables
Diffstat (limited to 'src/core/hle/service/ssl_c.cpp')
-rw-r--r--src/core/hle/service/ssl_c.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/service/ssl_c.cpp b/src/core/hle/service/ssl_c.cpp
index cabd18c80..9ecb72c77 100644
--- a/src/core/hle/service/ssl_c.cpp
+++ b/src/core/hle/service/ssl_c.cpp
@@ -62,10 +62,14 @@ static void GenerateRandomData(Service::Interface* self) {
const Interface::FunctionInfo FunctionTable[] = {
{0x00010002, Initialize, "Initialize"},
{0x000200C2, nullptr, "CreateContext"},
+ {0x00030000, nullptr, "CreateRootCertChain"},
+ {0x00040040, nullptr, "DestroyRootCertChain"},
{0x00050082, nullptr, "AddTrustedRootCA"},
+ {0x00060080, nullptr, "RootCertChainAddDefaultCert"},
{0x00110042, GenerateRandomData, "GenerateRandomData"},
{0x00150082, nullptr, "Read"},
{0x00170082, nullptr, "Write"},
+ {0x00180080, nullptr, "ContextSetRootCertChain"},
};
////////////////////////////////////////////////////////////////////////////////////////////////////