Changeset 6944 for source/ariba/SideportListener.cpp
- Timestamp:
- Nov 17, 2009, 4:26:04 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/SideportListener.cpp
r5945 r6944 56 56 57 57 string SideportListener::getEndpointDescription( const LinkID& link ) const { 58 if( overlay == NULL ) return ""; 58 if( overlay == NULL ) { 59 std::cerr << "Sideport: No overlay found." << std::endl; 60 return ""; 61 } 62 std::cerr << "WTF!!!" << std::endl; 59 63 return overlay->getEndpointDescriptor(link).toString(); 60 64 } 61 65 62 66 string SideportListener::getEndpointDescription( const NodeID& node ) const { 63 if( overlay == NULL ) return ""; 67 if( overlay == NULL ) { 68 std::cerr << "Sideport: No overlay found." << std::endl; 69 return ""; 70 } 64 71 return overlay->getEndpointDescriptor(node).toString(); 65 72 }
Note:
See TracChangeset
for help on using the changeset viewer.