summaryrefslogtreecommitdiff
path: root/src/core/hle/service/sockets/ethc.cpp
blob: f7f93d3eba12d4a5a1d9f9e1d023293d1f70441e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// SPDX-FileCopyrightText: Copyright 2025 citron Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#include "core/hle/service/ipc_helpers.h"
#include "core/hle/service/sockets/ethc.h"

namespace Service::Sockets {

ETHC_C::ETHC_C(Core::System& system_) : ServiceFramework{system_, "ethc:c"} {
    // ethc:c doesn't have documented commands yet
    static const FunctionInfo functions[] = {
        {0, nullptr, "DummyFunction"},
    };

    RegisterHandlers(functions);
}

ETHC_C::~ETHC_C() = default;

ETHC_I::ETHC_I(Core::System& system_) : ServiceFramework{system_, "ethc:i"} {
    // ethc:i doesn't have documented commands yet
    static const FunctionInfo functions[] = {
        {0, nullptr, "DummyFunction"},
    };

    RegisterHandlers(functions);
}

ETHC_I::~ETHC_I() = default;

} // namespace Service::Sockets