Ignore:
Timestamp:
Aug 5, 2009, 8:46:14 AM (15 years ago)
Author:
Christoph Mayer
Message:

debugging

File:
1 edited

Legend:

Unmodified
Added
Removed
  • source/ariba/SideportListener.cpp

    r5653 r5686  
    117117                overlay->bc->queryLocalLink(link->communicationId);
    118118
    119         if(bclink.isUnspecified()) return (Protocol)ret;
    120         if(bclink.localLocator == NULL) return (Protocol)ret;
     119        if(bclink.isUnspecified() || bclink.localLocator == NULL){
     120                logging_error("no reachability for node " << node.toString());
     121                return (Protocol)ret;
     122        }
    121123
    122124        const address_v* locator = bclink.remoteLocator;
     
    135137                ret |= SideportListener::rfcomm;
    136138        }
     139
     140        logging_error("reachability for node " << node.toString() << " is " << ret);
    137141
    138142        return (Protocol)ret;
Note: See TracChangeset for help on using the changeset viewer.