Commit of the new UDP Connection methods and

the rewrite of the retroshare core networking stack.

This check-in commits the changes to the services code.
Modifications to match the switch to p3connmgr.h and p3authmgr.h



git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@311 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
drbob 2008-01-25 07:49:28 +00:00
parent 059d43244a
commit 37d6a4b968
7 changed files with 52 additions and 64 deletions

View file

@ -37,13 +37,12 @@
#include "serialiser/rsmsgitems.h"
#include "rsiface/rsiface.h"
class pqimonitor;
class sslroot;
class p3ConnectMgr;
class p3MsgService: public p3Service
{
public:
p3MsgService();
p3MsgService(p3ConnectMgr *cm);
void loadWelcomeMsg(); /* startup message */
@ -71,14 +70,14 @@ int incomingMsgs();
std::list<RsMsgItem *> imsg;
std::list<RsMsgItem *> msgOutgoing; /* ones that haven't made it out yet! */
p3ConnectMgr *mConnMgr;
// bool state flags.
public:
Indicator msgChanged;
Indicator msgMajorChanged;
sslroot *sslr;
std::string config_dir;
};
#endif // MESSAGE_SERVICE_HEADER