Changeset 5686 for source/ariba
- Timestamp:
- Aug 5, 2009, 8:46:14 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/SideportListener.cpp
r5653 r5686 117 117 overlay->bc->queryLocalLink(link->communicationId); 118 118 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 } 121 123 122 124 const address_v* locator = bclink.remoteLocator; … … 135 137 ret |= SideportListener::rfcomm; 136 138 } 139 140 logging_error("reachability for node " << node.toString() << " is " << ret); 137 141 138 142 return (Protocol)ret;
Note:
See TracChangeset
for help on using the changeset viewer.