aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Horizon/Bcat/BcatServerManager.cs
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2023-05-04 13:16:51 -0300
committerGitHub <noreply@github.com>2023-05-04 18:16:51 +0200
commit264438ff19898bcb8f8fc16dc9243bf9f4eba072 (patch)
treefd069fe4f0dcd2a78fc9c8ccc6d4e93bec2330b5 /src/Ryujinx.Horizon/Bcat/BcatServerManager.cs
parent3b8ac1641a8a40849915396813e26384b5894911 (diff)
Revert "bcat ipc (#4446)" (#4801)
This reverts commit 42507323535443ad79be071367f3d4815afca688.
Diffstat (limited to 'src/Ryujinx.Horizon/Bcat/BcatServerManager.cs')
-rw-r--r--src/Ryujinx.Horizon/Bcat/BcatServerManager.cs28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/Ryujinx.Horizon/Bcat/BcatServerManager.cs b/src/Ryujinx.Horizon/Bcat/BcatServerManager.cs
deleted file mode 100644
index 953f6a22..00000000
--- a/src/Ryujinx.Horizon/Bcat/BcatServerManager.cs
+++ /dev/null
@@ -1,28 +0,0 @@
-using Ryujinx.Horizon.Bcat.Ipc;
-using Ryujinx.Horizon.Bcat.Types;
-using Ryujinx.Horizon.Common;
-using Ryujinx.Horizon.Sdk.Sf.Hipc;
-using Ryujinx.Horizon.Sdk.Sm;
-using System;
-
-namespace Ryujinx.Horizon.Bcat
-{
- class BcatServerManager : ServerManager
- {
- public BcatServerManager(HeapAllocator allocator, SmApi sm, int maxPorts, ManagerOptions options, int maxSessions) : base(allocator, sm, maxPorts, options, maxSessions)
- {
- }
-
- protected override Result OnNeedsToAccept(int portIndex, Server server)
- {
- return (BcatPortIndex)portIndex switch
- {
- BcatPortIndex.Admin => AcceptImpl(server, new BcatService(BcatServicePermissionLevel.Admin)),
- BcatPortIndex.Manager => AcceptImpl(server, new BcatService(BcatServicePermissionLevel.Manager)),
- BcatPortIndex.User => AcceptImpl(server, new BcatService(BcatServicePermissionLevel.User)),
- BcatPortIndex.System => AcceptImpl(server, new BcatService(BcatServicePermissionLevel.System)),
- _ => throw new ArgumentOutOfRangeException(nameof(portIndex)),
- };
- }
- }
-} \ No newline at end of file