early-access version 2543

This commit is contained in:
pineappleEA
2022-03-12 11:35:05 +01:00
parent 6924df7d97
commit 6d9b02c048
33 changed files with 1425 additions and 984 deletions

View File

@@ -81,6 +81,8 @@ ResultVal<Kernel::KPort*> ServiceManager::GetServicePort(const std::string& name
}
auto* port = Kernel::KPort::Create(kernel);
SCOPE_EXIT({ port->Close(); });
port->Initialize(ServerSessionCountMax, false, name);
auto handler = it->second;
port->GetServerPort().SetSessionHandler(std::move(handler));