mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
48a1c66c60
- p3bwctrl.h/.cc & rsbwctrlitems.h/.cc - New Interface in pqihandler to extract the data. - New Interface in rsconfig to display in GUI. - Added extra debugging in pqistreamer for catching big outqueues. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@5241 b45a01b8-16f6-495d-af2f-9b41ad6348cc
104 lines
2.8 KiB
C++
104 lines
2.8 KiB
C++
#ifndef LIBRETROSHARE_CONFIG_IMPLEMENTATION_H
|
|
#define LIBRETROSHARE_CONFIG_IMPLEMENTATION_H
|
|
|
|
/*
|
|
* libretroshare/src/rsserver: p3serverconfig.h
|
|
*
|
|
* RetroShare C++ Interface.
|
|
*
|
|
* Copyright 2011-2011 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 "retroshare/rsconfig.h"
|
|
#include "pqi/p3peermgr.h"
|
|
#include "pqi/p3linkmgr.h"
|
|
#include "pqi/p3netmgr.h"
|
|
#include "pqi/p3cfgmgr.h"
|
|
|
|
|
|
#define RS_CONFIG_ADVANCED_STRING "AdvMode"
|
|
|
|
|
|
|
|
class p3ServerConfig: public RsServerConfig
|
|
{
|
|
public:
|
|
|
|
p3ServerConfig(p3PeerMgr *peerMgr, p3LinkMgr *linkMgr, p3NetMgr *netMgr, p3GeneralConfig *genCfg);
|
|
virtual ~p3ServerConfig();
|
|
|
|
/* From RsIface::RsConfig */
|
|
|
|
virtual int getConfigNetStatus(RsConfigNetStatus &status);
|
|
virtual int getConfigStartup(RsConfigStartup ¶ms);
|
|
//virtual int getConfigDataRates(RsConfigDataRates ¶ms);
|
|
|
|
/***** for RsConfig -> p3BandwidthControl ****/
|
|
|
|
virtual int getTotalBandwidthRates(RsConfigDataRates &rates);
|
|
virtual int getAllBandwidthRates(std::map<std::string, RsConfigDataRates> &ratemap);
|
|
|
|
/* From RsInit */
|
|
|
|
virtual std::string RsConfigDirectory();
|
|
virtual std::string RsConfigKeysDirectory();
|
|
|
|
virtual std::string RsProfileConfigDirectory();
|
|
virtual bool getStartMinimised();
|
|
virtual std::string getRetroShareLink();
|
|
|
|
virtual bool getAutoLogin();
|
|
virtual void setAutoLogin(bool autoLogin);
|
|
virtual bool RsClearAutoLogin();
|
|
|
|
virtual std::string getRetroshareDataDirectory();
|
|
|
|
/* New Stuff */
|
|
|
|
virtual uint32_t getUserLevel();
|
|
|
|
virtual uint32_t getNetState();
|
|
virtual uint32_t getNetworkMode();
|
|
virtual uint32_t getNatTypeMode();
|
|
virtual uint32_t getNatHoleMode();
|
|
virtual uint32_t getConnectModes();
|
|
|
|
virtual bool getConfigurationOption(uint32_t key, std::string &opt);
|
|
virtual bool setConfigurationOption(uint32_t key, const std::string &opt);
|
|
|
|
/********************* ABOVE is RsConfig Interface *******/
|
|
|
|
private:
|
|
|
|
bool findConfigurationOption(uint32_t key, std::string &keystr);
|
|
|
|
p3PeerMgr *mPeerMgr;
|
|
p3LinkMgr *mLinkMgr;
|
|
p3NetMgr *mNetMgr;
|
|
p3GeneralConfig *mGeneralConfig;
|
|
|
|
RsMutex configMtx;
|
|
uint32_t mUserLevel; // store last one... will later be a config Item too.
|
|
|
|
};
|
|
|
|
#endif
|