2009-07-23 17:11:51 +00:00
|
|
|
/****************************************************************
|
|
|
|
* RetroShare is distributed under the following license:
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006, crypton
|
|
|
|
*
|
|
|
|
* 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
|
2009-08-19 22:15:16 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
2009-07-23 17:11:51 +00:00
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
****************************************************************/
|
|
|
|
|
|
|
|
#ifndef SERVERPAGE_H
|
2011-06-15 00:40:07 +00:00
|
|
|
#define SERVERPAGE_H
|
2009-07-23 17:11:51 +00:00
|
|
|
|
2012-02-18 14:55:50 +00:00
|
|
|
#include <retroshare-gui/configpage.h>
|
2009-08-19 22:15:16 +00:00
|
|
|
#include "ui_ServerPage.h"
|
2014-09-11 11:40:16 +00:00
|
|
|
#include "RsAutoUpdatePage.h"
|
2009-08-19 22:15:16 +00:00
|
|
|
|
2015-05-21 21:12:48 +00:00
|
|
|
class QNetworkReply;
|
2015-05-21 21:44:29 +00:00
|
|
|
class QNetworkAccessManager;
|
2015-05-30 13:57:10 +00:00
|
|
|
class BanListPeer;
|
|
|
|
struct sockaddr_storage;
|
2013-02-22 21:42:27 +00:00
|
|
|
|
2009-08-19 22:15:16 +00:00
|
|
|
class ServerPage: public ConfigPage
|
2009-07-23 17:11:51 +00:00
|
|
|
{
|
2011-06-15 00:40:07 +00:00
|
|
|
Q_OBJECT
|
2009-07-23 17:11:51 +00:00
|
|
|
|
2011-06-15 00:40:07 +00:00
|
|
|
public:
|
2013-10-18 21:10:33 +00:00
|
|
|
ServerPage(QWidget * parent = 0, Qt::WindowFlags flags = 0);
|
2011-06-15 00:40:07 +00:00
|
|
|
~ServerPage() {}
|
2009-08-19 22:15:16 +00:00
|
|
|
|
2009-07-23 17:11:51 +00:00
|
|
|
/** Saves the changes on this page */
|
2012-02-18 14:55:50 +00:00
|
|
|
virtual bool save(QString &errmsg);
|
2009-07-23 17:11:51 +00:00
|
|
|
/** Loads the settings for this page */
|
2012-02-18 14:55:50 +00:00
|
|
|
virtual void load();
|
|
|
|
|
2015-05-17 10:00:00 +00:00
|
|
|
virtual QPixmap iconPixmap() const { return QPixmap(":/images/server_24x24.png") ; }
|
|
|
|
virtual QString pageName() const { return tr("Network") ; }
|
|
|
|
virtual QString helpText() const { return ""; }
|
2009-07-23 17:11:51 +00:00
|
|
|
|
|
|
|
public slots:
|
2011-06-15 00:40:07 +00:00
|
|
|
void updateStatus();
|
2009-07-23 17:11:51 +00:00
|
|
|
|
|
|
|
private slots:
|
2015-06-02 13:02:20 +00:00
|
|
|
void updateSelectedBlackListIP(int row, int, int, int);
|
|
|
|
void updateSelectedWhiteListIP(int row,int,int,int);
|
2015-05-30 13:57:10 +00:00
|
|
|
void addIpRangeToBlackList();
|
|
|
|
void addIpRangeToWhiteList();
|
|
|
|
void moveToWhiteList0();
|
|
|
|
void moveToWhiteList1();
|
|
|
|
void moveToWhiteList2();
|
|
|
|
void removeWhiteListedIp();
|
2015-05-29 18:03:14 +00:00
|
|
|
void checkIpRange(const QString &);
|
2015-05-28 21:44:43 +00:00
|
|
|
void setGroupIpLimit(int n);
|
|
|
|
void toggleGroupIps(bool b);
|
|
|
|
void toggleAutoIncludeDHT(bool b);
|
|
|
|
void toggleAutoIncludeFriends(bool b);
|
2015-05-27 21:30:40 +00:00
|
|
|
void toggleIpFiltering(bool b);
|
|
|
|
void ipFilterContextMenu(const QPoint &);
|
2015-05-30 13:57:10 +00:00
|
|
|
void ipWhiteListContextMenu(const QPoint &point);
|
2015-05-27 21:30:40 +00:00
|
|
|
void removeBannedIp();
|
2011-06-15 00:40:07 +00:00
|
|
|
void saveAddresses();
|
|
|
|
void toggleUPnP();
|
|
|
|
void toggleIpDetermination(bool) ;
|
|
|
|
void toggleTunnelConnection(bool) ;
|
2015-05-17 10:00:00 +00:00
|
|
|
void clearKnownAddressList() ;
|
2015-05-21 21:12:48 +00:00
|
|
|
void handleNetworkReply(QNetworkReply *reply);
|
|
|
|
void updateTorInProxyIndicator();
|
2009-08-19 22:15:16 +00:00
|
|
|
|
2011-06-15 00:40:07 +00:00
|
|
|
private:
|
2014-01-18 02:35:06 +00:00
|
|
|
|
2015-05-17 10:00:00 +00:00
|
|
|
// Alternative Versions for HiddenNode Mode.
|
2015-05-30 13:57:10 +00:00
|
|
|
void addPeerToIPTable(QTableWidget *table, int row, const BanListPeer &blp);
|
|
|
|
bool removeCurrentRowFromBlackList(sockaddr_storage& collected_addr,int& masked_bytes);
|
2015-05-30 20:29:06 +00:00
|
|
|
bool removeCurrentRowFromWhiteList(sockaddr_storage &collected_addr, int &masked_bytes);
|
2015-05-17 10:00:00 +00:00
|
|
|
void loadHiddenNode();
|
|
|
|
void updateStatusHiddenNode();
|
|
|
|
void saveAddressesHiddenNode();
|
|
|
|
void updateTorOutProxyIndicator();
|
|
|
|
void updateLocInProxyIndicator();
|
2015-05-27 21:30:40 +00:00
|
|
|
void loadFilteredIps() ;
|
2014-01-18 02:35:06 +00:00
|
|
|
|
2011-06-15 00:40:07 +00:00
|
|
|
Ui::ServerPage ui;
|
2013-02-22 21:42:27 +00:00
|
|
|
|
2015-05-21 21:44:29 +00:00
|
|
|
QNetworkAccessManager *manager ;
|
2014-01-18 02:35:06 +00:00
|
|
|
|
2015-05-17 10:00:00 +00:00
|
|
|
bool mIsHiddenNode;
|
2009-07-23 17:11:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // !SERVERPAGE_H
|
|
|
|
|