summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/sockets/bsd.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-07-26 06:55:33 +0200
committerLioncash <mathew1800@gmail.com>2018-07-26 07:00:15 +0200
commit165e7645e1c1a5511599063e35db5314daf24ddc (patch)
tree91c385847ba2c32b277c91a951e572989097ae02 /src/core/hle/service/sockets/bsd.cpp
parentMerge pull request #828 from lioncash/ldr (diff)
downloadyuzu-165e7645e1c1a5511599063e35db5314daf24ddc.tar
yuzu-165e7645e1c1a5511599063e35db5314daf24ddc.tar.gz
yuzu-165e7645e1c1a5511599063e35db5314daf24ddc.tar.bz2
yuzu-165e7645e1c1a5511599063e35db5314daf24ddc.tar.lz
yuzu-165e7645e1c1a5511599063e35db5314daf24ddc.tar.xz
yuzu-165e7645e1c1a5511599063e35db5314daf24ddc.tar.zst
yuzu-165e7645e1c1a5511599063e35db5314daf24ddc.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/sockets/bsd.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/core/hle/service/sockets/bsd.cpp b/src/core/hle/service/sockets/bsd.cpp
index 6aa1e2511..3211a8346 100644
--- a/src/core/hle/service/sockets/bsd.cpp
+++ b/src/core/hle/service/sockets/bsd.cpp
@@ -109,4 +109,26 @@ BSD::BSD(const char* name) : ServiceFramework(name) {
RegisterHandlers(functions);
}
+BSDCFG::BSDCFG() : ServiceFramework{"bsdcfg"} {
+ // clang-format off
+ static const FunctionInfo functions[] = {
+ {0, nullptr, "SetIfUp"},
+ {1, nullptr, "SetIfUpWithEvent"},
+ {2, nullptr, "CancelIf"},
+ {3, nullptr, "SetIfDown"},
+ {4, nullptr, "GetIfState"},
+ {5, nullptr, "DhcpRenew"},
+ {6, nullptr, "AddStaticArpEntry"},
+ {7, nullptr, "RemoveArpEntry"},
+ {8, nullptr, "LookupArpEntry"},
+ {9, nullptr, "LookupArpEntry2"},
+ {10, nullptr, "ClearArpEntries"},
+ {11, nullptr, "ClearArpEntries2"},
+ {12, nullptr, "PrintArpEntries"},
+ };
+ // clang-format on
+
+ RegisterHandlers(functions);
+}
+
} // namespace Service::Sockets