* disabled UDP and TUNNEL connections for debugging purposes.

This is done in libretroshare.pro - if you want to reenable them.



git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3201 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
drbob 2010-06-24 18:06:10 +00:00
parent 30210cf9ec
commit 47a2f06094
4 changed files with 38 additions and 2 deletions

View file

@ -1866,7 +1866,10 @@ RsTurtle *rsTurtle = NULL ;
#include "services/p3statusservice.h"
#include "services/p3blogs.h"
#include "turtle/p3turtle.h"
#ifndef PQI_DISABLE_TUNNEL
#include "services/p3tunnel.h"
#endif
#include <list>
#include <string>
@ -2021,9 +2024,11 @@ int RsServer::StartupRetroShare()
chatSrv = new p3ChatService(mConnMgr);
mStatusSrv = new p3StatusService(mConnMgr);
#ifndef PQI_DISABLE_TUNNEL
p3tunnel *tn = new p3tunnel(mConnMgr, pqih);
pqih -> addService(tn);
mConnMgr->setP3tunnel(tn);
#endif
p3turtle *tr = new p3turtle(mConnMgr,ftserver) ;
rsTurtle = tr ;