Added Test Service for determining VoIP possibilities.

* Measures Lag and Clock offset, by pinging peers periodically.
 * added interface so the results can be plotted.
 * added serialisers for ping/pong data types.



git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4519 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
drbob 2011-08-03 17:43:26 +00:00
parent 3ce44a7720
commit e993068521
8 changed files with 1197 additions and 11 deletions

View file

@ -5,6 +5,8 @@ CONFIG += staticlib bitdht
CONFIG -= qt
TARGET = retroshare
CONFIG += test_voip
# Beware: All data of the stripped services are lost
#CONFIG += minimal
DEFINES *= PQI_DISABLE_TUNNEL
@ -128,6 +130,8 @@ use_blogs {
DEFINES *= RS_USE_BLOGS
}
PUBLIC_HEADERS = retroshare/rsblogs.h \
retroshare/rschannels.h \
retroshare/rsdisc.h \
@ -565,6 +569,17 @@ SOURCES += util/folderiterator.cc \
util/rsrandom.cc \
util/pugixml.cc
# VOIP TEST STUFF
HEADERS += retroshare/rsvoip.h \
serialiser/rsvoipitems.h \
services/p3vors.h
SOURCES += serialiser/rsvoipitems.cc \
services/p3vors.cc
minimal {
SOURCES -= rsserver/p3msgs.cc \
rsserver/p3status.cc \