summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ssl_c.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2016-03-12 03:50:18 +0100
committerLioncash <mathew1800@gmail.com>2016-03-12 04:23:51 +0100
commitd7dd6c8bd145797cd406d2733b0363be89019243 (patch)
tree3524cc5dcd12e13e1f450a1df712efdade2b596c /src/core/hle/service/ssl_c.cpp
parentMerge pull request #1476 from lioncash/emit (diff)
downloadyuzu-d7dd6c8bd145797cd406d2733b0363be89019243.tar
yuzu-d7dd6c8bd145797cd406d2733b0363be89019243.tar.gz
yuzu-d7dd6c8bd145797cd406d2733b0363be89019243.tar.bz2
yuzu-d7dd6c8bd145797cd406d2733b0363be89019243.tar.lz
yuzu-d7dd6c8bd145797cd406d2733b0363be89019243.tar.xz
yuzu-d7dd6c8bd145797cd406d2733b0363be89019243.tar.zst
yuzu-d7dd6c8bd145797cd406d2733b0363be89019243.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/ssl_c.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/core/hle/service/ssl_c.cpp b/src/core/hle/service/ssl_c.cpp
index fc7a4e6d3..14a4e98ec 100644
--- a/src/core/hle/service/ssl_c.cpp
+++ b/src/core/hle/service/ssl_c.cpp
@@ -66,10 +66,20 @@ const Interface::FunctionInfo FunctionTable[] = {
{0x00040040, nullptr, "DestroyRootCertChain"},
{0x00050082, nullptr, "AddTrustedRootCA"},
{0x00060080, nullptr, "RootCertChainAddDefaultCert"},
+ {0x00070080, nullptr, "RootCertChainRemoveCert"},
+ {0x000E0040, nullptr, "OpenDefaultClientCertContext"},
+ {0x000F0040, nullptr, "CloseClientCertContext"},
{0x00110042, GenerateRandomData, "GenerateRandomData"},
+ {0x00120042, nullptr, "InitializeConnectionSession"},
+ {0x00130040, nullptr, "StartConnection"},
+ {0x00140040, nullptr, "StartConnectionGetOut"},
{0x00150082, nullptr, "Read"},
{0x00170082, nullptr, "Write"},
{0x00180080, nullptr, "ContextSetRootCertChain"},
+ {0x00190080, nullptr, "ContextSetClientCert"},
+ {0x001B0080, nullptr, "ContextClearOpt"},
+ {0x001E0040, nullptr, "DestroyContext"},
+ {0x001F0082, nullptr, "ContextInitSharedmem"}
};
////////////////////////////////////////////////////////////////////////////////////////////////////