mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2026-03-02 13:44:38 +00:00
21 lines
276 B
C++
21 lines
276 B
C++
|
|
#include <mesosphere/processes/KPort.hpp>
|
||
|
|
#include <mesosphere/core/KCoreContext.hpp>
|
||
|
|
|
||
|
|
namespace mesosphere
|
||
|
|
{
|
||
|
|
|
||
|
|
KPort::~KPort()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
Result KPort::Initialize()
|
||
|
|
{
|
||
|
|
SetClientServerParent();
|
||
|
|
isClientAlive = true;
|
||
|
|
isServerAlive = true;
|
||
|
|
|
||
|
|
return ResultSuccess();
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|