/* Copyright 2020 flyinghead This file is part of Flycast. Flycast is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version. Flycast is distributed in the hope that 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 Flycast. If not, see . */ #pragma once #include #include #ifndef FEAT_NO_MINIUPNPC #include class MiniUPnP { public: MiniUPnP() { lanAddress[0] = 0; wanAddress[0] = 0; memset(&urls, 0, sizeof(urls)); memset(&data, 0, sizeof(data)); } bool Init(); void Term(); bool AddPortMapping(int port, bool tcp); const char *localAddress() const { return lanAddress; } const char *externalAddress() const { return wanAddress; } private: UPNPUrls urls; IGDdatas data; char lanAddress[32]; char wanAddress[32]; std::vector> mappedPorts; }; #else class MiniUPnP { public: bool Init() { return true; } void Term() {} bool AddPortMapping(int port, bool tcp) { return true; } const char *localAddress() const { return ""; } const char *externalAddress() const { return ""; } }; #endif