/* * Copyright (c) Atmosphère-NX * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #include #include "htcs_manager_service_object.hpp" #include "htcs_socket_service_object.hpp" namespace ams::htcs::server { #define AMS_HTCS_MANAGER_DEPRECATED_API(...) ({ AMS_UNUSED(__VA_ARGS__); AMS_ABORT("Deprecated IHtcsManager API %s was called.\n", AMS_CURRENT_FUNCTION_NAME); }) Result ManagerServiceObject::Socket(sf::Out out_err, sf::Out out_sock) { /* NOTE: This is a deprecated API, and Nintendo aborts when it is called. */ AMS_HTCS_MANAGER_DEPRECATED_API(out_err, out_sock); } Result ManagerServiceObject::Close(sf::Out out_err, sf::Out out_res, s32 desc) { /* NOTE: This is a deprecated API, and Nintendo aborts when it is called. */ AMS_HTCS_MANAGER_DEPRECATED_API(out_err, out_res, desc); } Result ManagerServiceObject::Connect(sf::Out out_err, sf::Out out_res, s32 desc, const htcs::SockAddrHtcs &address) { /* NOTE: This is a deprecated API, and Nintendo aborts when it is called. */ AMS_HTCS_MANAGER_DEPRECATED_API(out_err, out_res, desc, address); } Result ManagerServiceObject::Bind(sf::Out out_err, sf::Out out_res, s32 desc, const htcs::SockAddrHtcs &address) { /* NOTE: This is a deprecated API, and Nintendo aborts when it is called. */ AMS_HTCS_MANAGER_DEPRECATED_API(out_err, out_res, desc, address); } Result ManagerServiceObject::Listen(sf::Out out_err, sf::Out out_res, s32 desc, s32 backlog_count) { /* NOTE: This is a deprecated API, and Nintendo aborts when it is called. */ AMS_HTCS_MANAGER_DEPRECATED_API(out_err, out_res, desc, backlog_count); } Result ManagerServiceObject::Accept(sf::Out out_err, sf::Out out_res, sf::Out out_address, s32 desc) { /* NOTE: This is a deprecated API, and Nintendo aborts when it is called. */ AMS_HTCS_MANAGER_DEPRECATED_API(out_err, out_res, out_address, desc); } Result ManagerServiceObject::Recv(sf::Out out_err, sf::Out out_size, const sf::OutBuffer &buffer, s32 desc, s32 flags) { /* NOTE: This is a deprecated API, and Nintendo aborts when it is called. */ AMS_HTCS_MANAGER_DEPRECATED_API(out_err, out_size, buffer, desc, flags); } Result ManagerServiceObject::Send(sf::Out out_err, sf::Out out_size, s32 desc, const sf::InBuffer &buffer, s32 flags) { /* NOTE: This is a deprecated API, and Nintendo aborts when it is called. */ AMS_HTCS_MANAGER_DEPRECATED_API(out_err, out_size, desc, buffer, flags); } Result ManagerServiceObject::Shutdown(sf::Out out_err, sf::Out out_res, s32 desc, s32 how) { /* NOTE: This is a deprecated API, and Nintendo aborts when it is called. */ AMS_HTCS_MANAGER_DEPRECATED_API(out_err, out_res, desc, how); } Result ManagerServiceObject::Fcntl(sf::Out out_err, sf::Out out_res, s32 desc, s32 command, s32 value) { /* NOTE: This is a deprecated API, and Nintendo aborts when it is called. */ AMS_HTCS_MANAGER_DEPRECATED_API(out_err, out_res, desc, command, value); } }