- Timestamp:
- Jul 29, 2009, 4:42:50 PM (15 years ago)
- Location:
- source/ariba
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/overlay/BaseOverlay.cpp
r5412 r5435 1499 1499 ld->usedAsRelay = false; 1500 1500 1501 // keep alives missed? yes->1501 // keep alives and not up? yes-> link connection request is stale! 1502 1502 if ( !ld->up && difftime( now, ld->keepAliveTime ) > 2 ) { 1503 1503 … … 1523 1523 oldlinks.push_back( ld ); 1524 1524 1525 else1526 1527 1525 // keep alives missed? yes-> 1528 if ( !ld->autolink &&difftime( now, ld->keepAliveTime ) > 2 ) {1526 if ( difftime( now, ld->keepAliveTime ) > 2 ) { 1529 1527 1530 1528 // increase counter -
source/ariba/utility/system/StartupWrapper.cpp
r5416 r5435 122 122 log4cxx::LoggerPtr logger(log4cxx::Logger::getLogger("BluetoothSdp")); 123 123 logger->setLevel(log4cxx::Level::getDebug()); 124 } 125 */ 124 }*/ 125 { 126 log4cxx::LoggerPtr logger(log4cxx::Logger::getLogger("rfcomm")); 127 logger->setLevel(log4cxx::Level::getAll()); 128 } 126 129 127 130 //$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ -
source/ariba/utility/transport/rfcomm/rfcomm.cpp
r5428 r5435 139 139 logging_debug( "Connecting to " << endpoint.to_string() ); 140 140 if (info != NULL && (!info->up || !info->socket->is_open())) { 141 logging_ debug("Old link is down. Trying to re-establish link.");141 logging_error("Old link is down. Trying to re-establish link."); 142 142 info->reinit(); 143 143 } else {
Note:
See TracChangeset
for help on using the changeset viewer.