summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorGravatar Lioncash2016-12-08 00:08:31 -0500
committerGravatar Lioncash2016-12-08 00:57:53 -0500
commita09602d6f6a98fcadbb32657126196836e66d4e0 (patch)
tree01f7905bc896993ec5a1f88dfc54e337f18ab527 /src/core
parentptm: Update ptm_sysm function table (diff)
downloadyuzu-a09602d6f6a98fcadbb32657126196836e66d4e0.tar.gz
yuzu-a09602d6f6a98fcadbb32657126196836e66d4e0.tar.xz
yuzu-a09602d6f6a98fcadbb32657126196836e66d4e0.zip
ssl_c: Update function table
Updated based off information from 3dbrew
Diffstat (limited to 'src/core')
-rw-r--r--src/core/hle/service/ssl_c.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/hle/service/ssl_c.cpp b/src/core/hle/service/ssl_c.cpp
index abab1d271..6d36e5a24 100644
--- a/src/core/hle/service/ssl_c.cpp
+++ b/src/core/hle/service/ssl_c.cpp
@@ -66,6 +66,7 @@ const Interface::FunctionInfo FunctionTable[] = {
66 {0x00050082, nullptr, "AddTrustedRootCA"}, 66 {0x00050082, nullptr, "AddTrustedRootCA"},
67 {0x00060080, nullptr, "RootCertChainAddDefaultCert"}, 67 {0x00060080, nullptr, "RootCertChainAddDefaultCert"},
68 {0x00070080, nullptr, "RootCertChainRemoveCert"}, 68 {0x00070080, nullptr, "RootCertChainRemoveCert"},
69 {0x000D0084, nullptr, "OpenClientCertContext"},
69 {0x000E0040, nullptr, "OpenDefaultClientCertContext"}, 70 {0x000E0040, nullptr, "OpenDefaultClientCertContext"},
70 {0x000F0040, nullptr, "CloseClientCertContext"}, 71 {0x000F0040, nullptr, "CloseClientCertContext"},
71 {0x00110042, GenerateRandomData, "GenerateRandomData"}, 72 {0x00110042, GenerateRandomData, "GenerateRandomData"},
@@ -73,10 +74,12 @@ const Interface::FunctionInfo FunctionTable[] = {
73 {0x00130040, nullptr, "StartConnection"}, 74 {0x00130040, nullptr, "StartConnection"},
74 {0x00140040, nullptr, "StartConnectionGetOut"}, 75 {0x00140040, nullptr, "StartConnectionGetOut"},
75 {0x00150082, nullptr, "Read"}, 76 {0x00150082, nullptr, "Read"},
77 {0x00160082, nullptr, "ReadPeek"},
76 {0x00170082, nullptr, "Write"}, 78 {0x00170082, nullptr, "Write"},
77 {0x00180080, nullptr, "ContextSetRootCertChain"}, 79 {0x00180080, nullptr, "ContextSetRootCertChain"},
78 {0x00190080, nullptr, "ContextSetClientCert"}, 80 {0x00190080, nullptr, "ContextSetClientCert"},
79 {0x001B0080, nullptr, "ContextClearOpt"}, 81 {0x001B0080, nullptr, "ContextClearOpt"},
82 {0x001C00C4, nullptr, "ContextGetProtocolCipher"},
80 {0x001E0040, nullptr, "DestroyContext"}, 83 {0x001E0040, nullptr, "DestroyContext"},
81 {0x001F0082, nullptr, "ContextInitSharedmem"}, 84 {0x001F0082, nullptr, "ContextInitSharedmem"},
82}; 85};