/*
 * Copyright (c) 2018-2019 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 
#include 
#include 
#include 
#include 
#include 
#include "fsmitm_main.hpp"
#include "fsmitm_service.hpp"
#include "../utils.hpp"
struct FsMitmManagerOptions {
    static const size_t PointerBufferSize = 0x800;
    static const size_t MaxDomains = 0x40;
    static const size_t MaxDomainObjects = 0x4000;
};
using FsMitmManager = WaitableManager;
void FsMitmMain(void *arg) {
    /* Create server manager. */
    static auto s_server_manager = FsMitmManager(5);
    /* Create fsp-srv mitm. */
    AddMitmServerToManager(&s_server_manager, "fsp-srv", 61);
    /* Loop forever, servicing our services. */
    s_server_manager.Process();
}