summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/http_c.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2015-12-30 15:30:57 +0100
committerLioncash <mathew1800@gmail.com>2015-12-30 17:29:21 +0100
commit744f4af3ab797d8c4c456467c50661a04dd4931d (patch)
treea1f16d8b31b4f40eaa321ff131f5871a31b955a1 /src/core/hle/service/http_c.cpp
parentMerge pull request #1306 from Subv/sync (diff)
downloadyuzu-744f4af3ab797d8c4c456467c50661a04dd4931d.tar
yuzu-744f4af3ab797d8c4c456467c50661a04dd4931d.tar.gz
yuzu-744f4af3ab797d8c4c456467c50661a04dd4931d.tar.bz2
yuzu-744f4af3ab797d8c4c456467c50661a04dd4931d.tar.lz
yuzu-744f4af3ab797d8c4c456467c50661a04dd4931d.tar.xz
yuzu-744f4af3ab797d8c4c456467c50661a04dd4931d.tar.zst
yuzu-744f4af3ab797d8c4c456467c50661a04dd4931d.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/http_c.cpp10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/core/hle/service/http_c.cpp b/src/core/hle/service/http_c.cpp
index 0a3aba0a0..43d8a3b85 100644
--- a/src/core/hle/service/http_c.cpp
+++ b/src/core/hle/service/http_c.cpp
@@ -47,10 +47,18 @@ const Interface::FunctionInfo FunctionTable[] = {
{0x00220040, nullptr, "GetResponseStatusCode"},
{0x002300C0, nullptr, "GetResponseStatusCodeTimeout"},
{0x00240082, nullptr, "AddTrustedRootCA"},
+ {0x00250080, nullptr, "AddDefaultCert"},
+ {0x00260080, nullptr, "SelectRootCertChain"},
+ {0x002700C4, nullptr, "SetClientCert"},
+ {0x002D0000, nullptr, "CreateRootCertChain"},
+ {0x002E0040, nullptr, "DestroyRootCertChain"},
+ {0x002F0082, nullptr, "RootCertChainAddCert"},
+ {0x00300080, nullptr, "RootCertChainAddDefaultCert"},
{0x00350186, nullptr, "SetDefaultProxy"},
{0x00360000, nullptr, "ClearDNSCache"},
{0x00370080, nullptr, "SetKeepAlive"},
- {0x003800C0, nullptr, "Finalize"},
+ {0x003800C0, nullptr, "SetPostDataTypeSize"},
+ {0x00390000, nullptr, "Finalize"},
};
////////////////////////////////////////////////////////////////////////////////////////////////////