summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/gsp_lcd.cpp1
-rw-r--r--src/core/hle/service/http_c.cpp2
-rw-r--r--src/core/hle/service/soc_u.cpp4
-rw-r--r--src/core/hle/service/ssl_c.cpp10
4 files changed, 16 insertions, 1 deletions
diff --git a/src/core/hle/service/gsp_lcd.cpp b/src/core/hle/service/gsp_lcd.cpp
index 7ad7f081f..c700c21c5 100644
--- a/src/core/hle/service/gsp_lcd.cpp
+++ b/src/core/hle/service/gsp_lcd.cpp
@@ -14,6 +14,7 @@ const Interface::FunctionInfo FunctionTable[] = {
14 {0x00100000, nullptr, "PowerOffAllBacklights"}, 14 {0x00100000, nullptr, "PowerOffAllBacklights"},
15 {0x00110040, nullptr, "PowerOnBacklight"}, 15 {0x00110040, nullptr, "PowerOnBacklight"},
16 {0x00120040, nullptr, "PowerOffBacklight"}, 16 {0x00120040, nullptr, "PowerOffBacklight"},
17 {0x00130040, nullptr, "SetLedForceOff"}
17}; 18};
18 19
19//////////////////////////////////////////////////////////////////////////////////////////////////// 20////////////////////////////////////////////////////////////////////////////////////////////////////
diff --git a/src/core/hle/service/http_c.cpp b/src/core/hle/service/http_c.cpp
index 79009053e..0855ab227 100644
--- a/src/core/hle/service/http_c.cpp
+++ b/src/core/hle/service/http_c.cpp
@@ -49,6 +49,8 @@ const Interface::FunctionInfo FunctionTable[] = {
49 {0x00250080, nullptr, "AddDefaultCert"}, 49 {0x00250080, nullptr, "AddDefaultCert"},
50 {0x00260080, nullptr, "SelectRootCertChain"}, 50 {0x00260080, nullptr, "SelectRootCertChain"},
51 {0x002700C4, nullptr, "SetClientCert"}, 51 {0x002700C4, nullptr, "SetClientCert"},
52 {0x002B0080, nullptr, "SetSSLOpt"},
53 {0x002C0080, nullptr, "SetSSLClearOpt"},
52 {0x002D0000, nullptr, "CreateRootCertChain"}, 54 {0x002D0000, nullptr, "CreateRootCertChain"},
53 {0x002E0040, nullptr, "DestroyRootCertChain"}, 55 {0x002E0040, nullptr, "DestroyRootCertChain"},
54 {0x002F0082, nullptr, "RootCertChainAddCert"}, 56 {0x002F0082, nullptr, "RootCertChainAddCert"},
diff --git a/src/core/hle/service/soc_u.cpp b/src/core/hle/service/soc_u.cpp
index e603bf794..b52e52d4a 100644
--- a/src/core/hle/service/soc_u.cpp
+++ b/src/core/hle/service/soc_u.cpp
@@ -742,7 +742,8 @@ const Interface::FunctionInfo FunctionTable[] = {
742 {0x000C0082, Shutdown, "Shutdown"}, 742 {0x000C0082, Shutdown, "Shutdown"},
743 {0x000D0082, nullptr, "GetHostByName"}, 743 {0x000D0082, nullptr, "GetHostByName"},
744 {0x000E00C2, nullptr, "GetHostByAddr"}, 744 {0x000E00C2, nullptr, "GetHostByAddr"},
745 {0x000F0106, nullptr, "unknown_resolve_ip"}, 745 {0x000F0106, nullptr, "GetAddrInfo"},
746 {0x00100102, nullptr, "GetNameInfo"},
746 {0x00110102, nullptr, "GetSockOpt"}, 747 {0x00110102, nullptr, "GetSockOpt"},
747 {0x00120104, nullptr, "SetSockOpt"}, 748 {0x00120104, nullptr, "SetSockOpt"},
748 {0x001300C2, Fcntl, "Fcntl"}, 749 {0x001300C2, Fcntl, "Fcntl"},
@@ -759,6 +760,7 @@ const Interface::FunctionInfo FunctionTable[] = {
759 {0x001E0040, nullptr, "ICMPClose"}, 760 {0x001E0040, nullptr, "ICMPClose"},
760 {0x001F0040, nullptr, "GetResolverInfo"}, 761 {0x001F0040, nullptr, "GetResolverInfo"},
761 {0x00210002, nullptr, "CloseSockets"}, 762 {0x00210002, nullptr, "CloseSockets"},
763 {0x00230040, nullptr, "AddGlobalSocket"},
762}; 764};
763 765
764//////////////////////////////////////////////////////////////////////////////////////////////////// 766////////////////////////////////////////////////////////////////////////////////////////////////////
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[] = {
66 {0x00040040, nullptr, "DestroyRootCertChain"}, 66 {0x00040040, nullptr, "DestroyRootCertChain"},
67 {0x00050082, nullptr, "AddTrustedRootCA"}, 67 {0x00050082, nullptr, "AddTrustedRootCA"},
68 {0x00060080, nullptr, "RootCertChainAddDefaultCert"}, 68 {0x00060080, nullptr, "RootCertChainAddDefaultCert"},
69 {0x00070080, nullptr, "RootCertChainRemoveCert"},
70 {0x000E0040, nullptr, "OpenDefaultClientCertContext"},
71 {0x000F0040, nullptr, "CloseClientCertContext"},
69 {0x00110042, GenerateRandomData, "GenerateRandomData"}, 72 {0x00110042, GenerateRandomData, "GenerateRandomData"},
73 {0x00120042, nullptr, "InitializeConnectionSession"},
74 {0x00130040, nullptr, "StartConnection"},
75 {0x00140040, nullptr, "StartConnectionGetOut"},
70 {0x00150082, nullptr, "Read"}, 76 {0x00150082, nullptr, "Read"},
71 {0x00170082, nullptr, "Write"}, 77 {0x00170082, nullptr, "Write"},
72 {0x00180080, nullptr, "ContextSetRootCertChain"}, 78 {0x00180080, nullptr, "ContextSetRootCertChain"},
79 {0x00190080, nullptr, "ContextSetClientCert"},
80 {0x001B0080, nullptr, "ContextClearOpt"},
81 {0x001E0040, nullptr, "DestroyContext"},
82 {0x001F0082, nullptr, "ContextInitSharedmem"}
73}; 83};
74 84
75//////////////////////////////////////////////////////////////////////////////////////////////////// 85////////////////////////////////////////////////////////////////////////////////////////////////////