2008-05-18 00:32:03 +04:00
|
|
|
/*
|
2015-04-19 18:17:47 +03:00
|
|
|
* Bittorrent Client using Qt and libtorrent.
|
|
|
|
* Copyright (C) 2015 Vladimir Golovnev <glassez@yandex.ru>
|
2008-05-18 00:32:03 +04:00
|
|
|
*
|
|
|
|
* This program 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.
|
|
|
|
*
|
|
|
|
* This program 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 this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
2009-04-05 21:00:55 +04:00
|
|
|
* In addition, as a special exception, the copyright holders give permission to
|
|
|
|
* link this program with the OpenSSL project's "OpenSSL" library (or with
|
|
|
|
* modified versions of it that use the same license as the "OpenSSL" library),
|
|
|
|
* and distribute the linked executables. You must obey the GNU General Public
|
|
|
|
* License in all respects for all of the code used other than "OpenSSL". If you
|
|
|
|
* modify file(s), you may extend this exception to your version of the file(s),
|
|
|
|
* but you are not obligated to do so. If you do not wish to do so, delete this
|
|
|
|
* exception statement from your version.
|
2008-05-18 00:32:03 +04:00
|
|
|
*/
|
|
|
|
|
2015-04-19 18:17:47 +03:00
|
|
|
#ifndef NET_PORTFORWARDER_H
|
|
|
|
#define NET_PORTFORWARDER_H
|
2008-05-18 00:32:03 +04:00
|
|
|
|
2015-04-19 18:17:47 +03:00
|
|
|
#include <QObject>
|
|
|
|
#include <QHash>
|
2008-05-18 00:32:03 +04:00
|
|
|
|
2015-04-19 18:17:47 +03:00
|
|
|
namespace libtorrent
|
|
|
|
{
|
|
|
|
class session;
|
2014-11-04 13:00:42 +03:00
|
|
|
}
|
2008-05-18 00:32:03 +04:00
|
|
|
|
2015-04-19 18:17:47 +03:00
|
|
|
namespace Net
|
|
|
|
{
|
|
|
|
class PortForwarder : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
Q_DISABLE_COPY(PortForwarder)
|
2008-05-18 00:32:03 +04:00
|
|
|
|
2015-04-19 18:17:47 +03:00
|
|
|
public:
|
|
|
|
static void initInstance(libtorrent::session *const provider);
|
|
|
|
static void freeInstance();
|
|
|
|
static PortForwarder *instance();
|
2008-05-18 00:32:03 +04:00
|
|
|
|
2016-06-03 17:03:17 +03:00
|
|
|
bool isEnabled() const;
|
|
|
|
void setEnabled(bool enabled);
|
|
|
|
|
2016-09-11 23:09:30 +03:00
|
|
|
void addPort(quint16 port);
|
|
|
|
void deletePort(quint16 port);
|
2008-05-24 00:29:32 +04:00
|
|
|
|
2015-04-19 18:17:47 +03:00
|
|
|
private:
|
|
|
|
explicit PortForwarder(libtorrent::session *const provider, QObject *parent = 0);
|
|
|
|
~PortForwarder();
|
2009-11-17 19:02:35 +03:00
|
|
|
|
2015-04-19 18:17:47 +03:00
|
|
|
void start();
|
|
|
|
void stop();
|
2010-12-25 16:54:33 +03:00
|
|
|
|
2015-04-19 18:17:47 +03:00
|
|
|
bool m_active;
|
|
|
|
libtorrent::session *m_provider;
|
2016-09-11 23:09:30 +03:00
|
|
|
QHash<quint16, int> m_mappedPorts;
|
2010-12-25 16:54:33 +03:00
|
|
|
|
2015-04-19 18:17:47 +03:00
|
|
|
static PortForwarder *m_instance;
|
|
|
|
};
|
|
|
|
}
|
2008-05-18 00:32:03 +04:00
|
|
|
|
2015-04-19 18:17:47 +03:00
|
|
|
#endif // NET_PORTFORWARDER_H
|