2009-07-23 13:11:51 -04: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 18:15:16 -04:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
2009-07-23 13:11:51 -04:00
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
****************************************************************/
|
|
|
|
|
|
|
|
#ifndef SERVERPAGE_H
|
2011-06-14 20:40:07 -04:00
|
|
|
#define SERVERPAGE_H
|
2009-07-23 13:11:51 -04:00
|
|
|
|
2009-08-19 18:15:16 -04:00
|
|
|
#include "ui_ServerPage.h"
|
2016-10-09 08:32:52 -04:00
|
|
|
|
2015-09-17 04:05:31 -04:00
|
|
|
#include <inttypes.h>
|
2016-11-08 13:47:17 -05:00
|
|
|
/* get OS-specific definitions for:
|
|
|
|
* struct sockaddr_storage
|
|
|
|
*/
|
|
|
|
#ifndef WINDOWS_SYS
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#else
|
|
|
|
#include <winsock2.h>
|
|
|
|
#endif
|
2009-08-19 18:15:16 -04:00
|
|
|
|
2016-10-09 08:32:52 -04:00
|
|
|
#include <services/autoproxy/rsautoproxymonitor.h>
|
|
|
|
#include <services/autoproxy/p3i2pbob.h>
|
|
|
|
|
|
|
|
#include <retroshare-gui/configpage.h>
|
|
|
|
#include <retroshare-gui/RsAutoUpdatePage.h>
|
|
|
|
|
|
|
|
|
2015-05-21 17:12:48 -04:00
|
|
|
class QNetworkReply;
|
2015-05-21 17:44:29 -04:00
|
|
|
class QNetworkAccessManager;
|
2015-05-30 09:57:10 -04:00
|
|
|
class BanListPeer;
|
2013-02-22 16:42:27 -05:00
|
|
|
|
2016-10-09 08:32:52 -04:00
|
|
|
class ServerPage: public ConfigPage, public autoProxyCallback
|
2009-07-23 13:11:51 -04:00
|
|
|
{
|
2011-06-14 20:40:07 -04:00
|
|
|
Q_OBJECT
|
2009-07-23 13:11:51 -04:00
|
|
|
|
2011-06-14 20:40:07 -04:00
|
|
|
public:
|
2013-10-18 17:10:33 -04:00
|
|
|
ServerPage(QWidget * parent = 0, Qt::WindowFlags flags = 0);
|
2011-06-14 20:40:07 -04:00
|
|
|
~ServerPage() {}
|
2009-08-19 18:15:16 -04:00
|
|
|
|
2009-07-23 13:11:51 -04:00
|
|
|
/** Loads the settings for this page */
|
2012-02-18 09:55:50 -05:00
|
|
|
virtual void load();
|
|
|
|
|
2016-08-27 12:15:13 -04:00
|
|
|
virtual QPixmap iconPixmap() const { return QPixmap(":/icons/png/network.png") ; }
|
2015-05-17 06:00:00 -04:00
|
|
|
virtual QString pageName() const { return tr("Network") ; }
|
|
|
|
virtual QString helpText() const { return ""; }
|
2009-07-23 13:11:51 -04:00
|
|
|
|
|
|
|
public slots:
|
2011-06-14 20:40:07 -04:00
|
|
|
void updateStatus();
|
2009-07-23 13:11:51 -04:00
|
|
|
|
|
|
|
private slots:
|
2015-09-07 06:59:21 -04:00
|
|
|
// ban list
|
2015-06-02 09:02:20 -04:00
|
|
|
void updateSelectedBlackListIP(int row, int, int, int);
|
|
|
|
void updateSelectedWhiteListIP(int row,int,int,int);
|
2017-03-15 14:26:07 -04:00
|
|
|
void saveAndTestInProxy();
|
2015-05-30 09:57:10 -04:00
|
|
|
void addIpRangeToBlackList();
|
|
|
|
void addIpRangeToWhiteList();
|
|
|
|
void moveToWhiteList0();
|
|
|
|
void moveToWhiteList1();
|
|
|
|
void moveToWhiteList2();
|
|
|
|
void removeWhiteListedIp();
|
2015-05-29 14:03:14 -04:00
|
|
|
void checkIpRange(const QString &);
|
2015-05-28 17:44:43 -04:00
|
|
|
void setGroupIpLimit(int n);
|
|
|
|
void toggleGroupIps(bool b);
|
|
|
|
void toggleAutoIncludeDHT(bool b);
|
|
|
|
void toggleAutoIncludeFriends(bool b);
|
2015-05-27 17:30:40 -04:00
|
|
|
void toggleIpFiltering(bool b);
|
|
|
|
void ipFilterContextMenu(const QPoint &);
|
2015-05-30 09:57:10 -04:00
|
|
|
void ipWhiteListContextMenu(const QPoint &point);
|
2015-05-27 17:30:40 -04:00
|
|
|
void removeBannedIp();
|
2015-09-07 06:59:21 -04:00
|
|
|
|
2017-11-29 09:17:49 -05:00
|
|
|
void tabChanged(int page);
|
2015-09-07 06:59:21 -04:00
|
|
|
// server
|
2011-06-14 20:40:07 -04:00
|
|
|
void saveAddresses();
|
2017-01-29 15:47:13 -05:00
|
|
|
void saveRates();
|
2011-06-14 20:40:07 -04:00
|
|
|
void toggleUPnP();
|
|
|
|
void toggleIpDetermination(bool) ;
|
|
|
|
void toggleTunnelConnection(bool) ;
|
2015-05-17 06:00:00 -04:00
|
|
|
void clearKnownAddressList() ;
|
2015-05-21 17:12:48 -04:00
|
|
|
void handleNetworkReply(QNetworkReply *reply);
|
2015-09-07 16:57:54 -04:00
|
|
|
void updateInProxyIndicator();
|
2009-08-19 18:15:16 -04:00
|
|
|
|
2016-10-09 08:32:52 -04:00
|
|
|
// i2p bob
|
|
|
|
void startBOB();
|
|
|
|
void restartBOB();
|
|
|
|
void stopBOB();
|
|
|
|
void getNewKey();
|
|
|
|
void loadKey();
|
|
|
|
void enableBob(bool checked);
|
|
|
|
void tunnelSettingsChanged(int);
|
|
|
|
|
|
|
|
void toggleBobAdvancedSettings(bool checked);
|
|
|
|
|
|
|
|
void syncI2PProxyPortNormal(int i);
|
|
|
|
void syncI2PProxyPortBob(int i);
|
|
|
|
|
|
|
|
void syncI2PProxyAddrNormal(QString);
|
|
|
|
void syncI2PProxyAddrBob(QString);
|
|
|
|
|
|
|
|
void connectionWithoutCert();
|
|
|
|
|
2017-06-21 11:57:14 -04:00
|
|
|
//Relay Tab
|
|
|
|
void updateRelayOptions();
|
|
|
|
void updateEnabled();
|
|
|
|
void checkKey();
|
|
|
|
void addServer();
|
|
|
|
void removeServer();
|
|
|
|
void loadServers();
|
|
|
|
void updateTotals();
|
|
|
|
void updateRelayMode();
|
|
|
|
|
2016-10-09 08:32:52 -04:00
|
|
|
// autoProxyCallback interface
|
|
|
|
public:
|
|
|
|
void taskFinished(taskTicket *&ticket);
|
|
|
|
|
2011-06-14 20:40:07 -04:00
|
|
|
private:
|
2016-10-09 08:32:52 -04:00
|
|
|
void loadCommon();
|
|
|
|
void saveCommon();
|
|
|
|
void saveBob();
|
|
|
|
void updateStatusBob();
|
|
|
|
|
|
|
|
void setUpBobElements();
|
|
|
|
void enableBobElements(bool enable);
|
|
|
|
|
|
|
|
void updateInProxyIndicatorResult(bool success);
|
|
|
|
|
2015-09-07 06:59:21 -04:00
|
|
|
// ban list
|
2015-05-30 09:57:10 -04:00
|
|
|
void addPeerToIPTable(QTableWidget *table, int row, const BanListPeer &blp);
|
|
|
|
bool removeCurrentRowFromBlackList(sockaddr_storage& collected_addr,int& masked_bytes);
|
2015-05-30 16:29:06 -04:00
|
|
|
bool removeCurrentRowFromWhiteList(sockaddr_storage &collected_addr, int &masked_bytes);
|
2015-09-07 06:59:21 -04:00
|
|
|
|
|
|
|
// Alternative Versions for HiddenNode Mode.
|
2015-05-17 06:00:00 -04:00
|
|
|
void loadHiddenNode();
|
|
|
|
void updateStatusHiddenNode();
|
|
|
|
void saveAddressesHiddenNode();
|
2015-09-07 12:46:19 -04:00
|
|
|
void updateOutProxyIndicator();
|
2015-05-27 17:30:40 -04:00
|
|
|
void loadFilteredIps() ;
|
2014-01-17 21:35:06 -05:00
|
|
|
|
2011-06-14 20:40:07 -04:00
|
|
|
Ui::ServerPage ui;
|
2013-02-22 16:42:27 -05:00
|
|
|
|
2015-05-21 17:44:29 -04:00
|
|
|
QNetworkAccessManager *manager ;
|
2016-10-09 08:32:52 -04:00
|
|
|
int mOngoingConnectivityCheck;
|
2014-01-17 21:35:06 -05:00
|
|
|
|
2016-10-09 08:32:52 -04:00
|
|
|
bool mIsHiddenNode;
|
2015-09-17 04:05:31 -04:00
|
|
|
uint32_t mHiddenType;
|
2016-10-09 08:32:52 -04:00
|
|
|
bobSettings mBobSettings;
|
|
|
|
bool mBobAccessible; // keeps track wether bob is accessable or not to en/disable the corresponding buttons
|
2009-07-23 13:11:51 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // !SERVERPAGE_H
|
|
|
|
|