2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
* "$Id: p3face-config.cc,v 1.4 2007-05-05 16:10:05 rmf24 Exp $"
|
|
|
|
*
|
|
|
|
* RetroShare C++ Interface.
|
|
|
|
*
|
|
|
|
* Copyright 2004-2006 by Robert Fernie.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License Version 2 as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
* USA.
|
|
|
|
*
|
|
|
|
* Please report all bugs and problems to "retroshare@lunamutt.com".
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "rsserver/p3face.h"
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
#include <sstream>
|
|
|
|
|
2008-07-10 12:29:18 -04:00
|
|
|
#include "util/rsdebug.h"
|
2007-11-14 22:18:48 -05:00
|
|
|
const int p3facemsgzone = 11453;
|
|
|
|
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
|
|
|
|
/****************************************/
|
|
|
|
/* RsIface Config */
|
|
|
|
/* Config */
|
|
|
|
|
2009-06-08 13:09:00 -04:00
|
|
|
int RsServer::ConfigSetDataRates( int totalDownload, int totalUpload ) /* in kbrates */
|
2007-11-14 22:18:48 -05:00
|
|
|
{
|
|
|
|
/* fill the rsiface class */
|
|
|
|
RsIface &iface = getIface();
|
|
|
|
|
|
|
|
/* lock Mutexes */
|
|
|
|
lockRsCore(); /* LOCK */
|
|
|
|
iface.lockData(); /* LOCK */
|
|
|
|
|
2009-06-08 13:09:00 -04:00
|
|
|
pqih -> setMaxRate(true, totalDownload);
|
|
|
|
pqih -> setMaxRate(false, totalUpload);
|
2007-11-14 22:18:48 -05:00
|
|
|
|
2008-04-04 08:19:50 -04:00
|
|
|
pqih -> save_config();
|
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
/* unlock Mutexes */
|
|
|
|
iface.unlockData(); /* UNLOCK */
|
|
|
|
unlockRsCore(); /* UNLOCK */
|
|
|
|
|
|
|
|
/* does its own locking */
|
|
|
|
UpdateAllConfig();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-06-09 20:47:24 -04:00
|
|
|
int RsServer::ConfigGetDataRates( float &inKb, float &outKb ) /* in kbrates */
|
|
|
|
{
|
|
|
|
/* fill the rsiface class */
|
|
|
|
RsIface &iface = getIface();
|
|
|
|
|
|
|
|
/* lock Mutexes */
|
|
|
|
lockRsCore(); /* LOCK */
|
|
|
|
iface.lockData(); /* LOCK */
|
|
|
|
|
|
|
|
pqih -> getCurrentRates(inKb, outKb);
|
|
|
|
|
|
|
|
/* unlock Mutexes */
|
|
|
|
iface.unlockData(); /* UNLOCK */
|
|
|
|
unlockRsCore(); /* UNLOCK */
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
int RsServer::ConfigSetBootPrompt( bool on )
|
|
|
|
{
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int RsServer::UpdateAllConfig()
|
|
|
|
{
|
|
|
|
/* fill the rsiface class */
|
|
|
|
RsIface &iface = getIface();
|
|
|
|
|
|
|
|
/* lock Mutexes */
|
|
|
|
lockRsCore(); /* LOCK */
|
|
|
|
iface.lockData(); /* LOCK */
|
|
|
|
|
|
|
|
RsConfig &config = iface.mConfig;
|
|
|
|
|
2008-01-25 02:58:29 -05:00
|
|
|
config.ownId = mAuthMgr->OwnId();
|
|
|
|
config.ownName = mAuthMgr->getName(config.ownId);
|
|
|
|
peerConnectState pstate;
|
|
|
|
mConnMgr->getOwnNetStatus(pstate);
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
/* ports */
|
2008-01-25 02:58:29 -05:00
|
|
|
config.localAddr = inet_ntoa(pstate.localaddr.sin_addr);
|
|
|
|
config.localPort = ntohs(pstate.localaddr.sin_port);
|
2008-04-06 16:57:36 -04:00
|
|
|
|
2008-01-25 02:58:29 -05:00
|
|
|
config.firewalled = true;
|
|
|
|
config.forwardPort = true;
|
2007-11-14 22:18:48 -05:00
|
|
|
|
2008-01-25 02:58:29 -05:00
|
|
|
config.extAddr = inet_ntoa(pstate.serveraddr.sin_addr);
|
|
|
|
config.extPort = ntohs(pstate.serveraddr.sin_port);
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
/* data rates */
|
2009-06-08 13:09:00 -04:00
|
|
|
config.maxDownloadDataRate = (int) pqih -> getMaxRate(true); /* kb */
|
|
|
|
config.maxUploadDataRate = (int) pqih -> getMaxRate(false); /* kb */
|
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
config.promptAtBoot = true; /* popup the password prompt */
|
|
|
|
|
2008-10-18 12:02:06 -04:00
|
|
|
/* update network configuration */
|
|
|
|
|
|
|
|
config.netOk = mConnMgr->getNetStatusOk();
|
|
|
|
config.netUpnpOk = mConnMgr->getNetStatusUpnpOk();
|
|
|
|
config.netDhtOk = mConnMgr->getNetStatusDhtOk();
|
|
|
|
config.netExtOk = mConnMgr->getNetStatusExtOk();
|
|
|
|
config.netUdpOk = mConnMgr->getNetStatusUdpOk();
|
|
|
|
config.netTcpOk = mConnMgr->getNetStatusTcpOk();
|
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
/* update DHT/UPnP config */
|
2008-01-25 02:58:29 -05:00
|
|
|
|
|
|
|
config.uPnPState = mConnMgr->getUPnPState();
|
|
|
|
config.uPnPActive = mConnMgr->getUPnPEnabled();
|
|
|
|
config.DHTPeers = 20;
|
2008-06-09 20:47:24 -04:00
|
|
|
config.DHTActive = mConnMgr->getDHTEnabled();
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
/* Notify of Changes */
|
2009-02-22 12:36:39 -05:00
|
|
|
// iface.setChanged(RsIface::Config);
|
|
|
|
rsicontrol->getNotify().notifyListChange(NOTIFY_LIST_CONFIG, NOTIFY_TYPE_MOD);
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
/* unlock Mutexes */
|
|
|
|
iface.unlockData(); /* UNLOCK */
|
|
|
|
unlockRsCore(); /* UNLOCK */
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2008-02-07 11:18:34 -05:00
|
|
|
void RsServer::ConfigFinalSave()
|
|
|
|
{
|
2008-11-13 18:03:46 -05:00
|
|
|
/* force saving of transfers TODO */
|
2008-11-02 06:38:11 -05:00
|
|
|
//ftserver->saveFileTransferStatus();
|
2008-02-08 07:39:40 -05:00
|
|
|
|
|
|
|
mAuthMgr->FinalSaveCertificates();
|
2008-02-07 11:18:34 -05:00
|
|
|
mConfigMgr->completeConfiguration();
|
|
|
|
}
|
|
|
|
|
2008-04-06 16:57:36 -04:00
|
|
|
void RsServer::rsGlobalShutDown()
|
|
|
|
{
|
|
|
|
ConfigFinalSave(); // save configuration before exit
|
2008-04-09 08:54:15 -04:00
|
|
|
mConnMgr->shutdown(); /* Handles UPnP */
|
2008-04-06 16:57:36 -04:00
|
|
|
}
|
2008-04-09 08:54:15 -04:00
|
|
|
|