Changeset 6941
- Timestamp:
- Nov 17, 2009, 1:55:46 PM (15 years ago)
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
README
r6940 r6941 1 see http://www.tm.uka.de/ariba 1 see 2 http://www.ariba-underlay.org 3 and 4 www.spovnet.de -
sample/pingpong/PingPong.cpp
r5316 r6941 1 1 #include "PingPong.h" 2 2 #include "ariba/utility/configuration/Configuration.h" 3 #include "ariba/utility/visual/DddVis.h" 3 4 4 5 using ariba::utility::Configuration; … … 52 53 if (config.exists("pingpong.name")) 53 54 name = config.read<string>("pingpong.name"); 55 56 // get visualization 57 if( config.exists("ariba.visual3d.ip") && config.exists("ariba.visual3d.port")){ 58 string ip = config.read<string>("ariba.visual3d.ip"); 59 unsigned int port = config.read<unsigned int>("ariba.visual3d.port"); 60 ariba::utility::DddVis::instance().configure(ip, port); 61 } 54 62 55 63 } // if( Configuration::haveConfig() ) -
source/ariba/communication/BaseCommunication.h
r6919 r6941 277 277 NetworkChangeDetection networkMonitor; 278 278 #endif 279 279 280 /// list of all remote addresses of links to end-points 280 281 class endpoint_reference { … … 308 309 void send( Message* message, const LinkDescriptor& descriptor ); 309 310 310 311 312 311 /// state of the base communication 313 312 bool started; -
source/ariba/utility/visual/DddVis.cpp
r6919 r6941 98 98 << getTimestamp() << del 99 99 << getNetworkName(network) << del 100 << "null" << del 100 101 << 0 << del; 101 102
Note:
See TracChangeset
for help on using the changeset viewer.