mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-14 12:02:29 -04:00
Added RsConfig class which will in the future support most of the interface from rsinit.h & rsiface.h
* Moved rsnetwork.h => rsconfig.h * Implemented Network functions (call p3NetMgr) in RsConfig. * Implemented UserLevel (New/Basic/Casual/Power) Levels * added p3PeerMgr::haveOnceConnected() function, for UserLevel support. git-svn-id: http://svn.code.sf.net/p/retroshare/code/branches/v0.5-netupgrade@4431 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
4792d7c878
commit
c2a0309f05
9 changed files with 574 additions and 96 deletions
86
libretroshare/src/rsserver/p3serverconfig.h
Normal file
86
libretroshare/src/rsserver/p3serverconfig.h
Normal file
|
@ -0,0 +1,86 @@
|
|||
#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"
|
||||
|
||||
class p3ServerConfig: public RsServerConfig
|
||||
{
|
||||
public:
|
||||
|
||||
p3ServerConfig(p3PeerMgr *peerMgr, p3LinkMgr *linkMgr, p3NetMgr *netMgr);
|
||||
virtual ~p3ServerConfig();
|
||||
|
||||
/* From RsIface::RsConfig */
|
||||
|
||||
virtual int getConfigNetStatus(RsConfigNetStatus &status);
|
||||
virtual int getConfigStartup(RsConfigStartup ¶ms);
|
||||
virtual int getConfigDataRates(RsConfigDataRates ¶ms);
|
||||
|
||||
/* 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();
|
||||
|
||||
/********************* ABOVE is RsConfig Interface *******/
|
||||
|
||||
private:
|
||||
|
||||
p3PeerMgr *mPeerMgr;
|
||||
p3LinkMgr *mLinkMgr;
|
||||
p3NetMgr *mNetMgr;
|
||||
|
||||
RsMutex configMtx;
|
||||
uint32_t mUserLevel; // store last one... will later be a config Item too.
|
||||
|
||||
};
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue