Changeset 5781
- Timestamp:
- Aug 7, 2009, 1:42:18 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/SideportListener.cpp
r5774 r5781 126 126 ret |= SideportListener::tcp; 127 127 128 if( tcpip.address().is_v4() || tcpip.address().is_v4_mapped() ) 128 if( tcpip.address().is_v4() || tcpip.address().is_v4_mapped() ){ 129 129 ret |= SideportListener::ipv4; 130 else if( tcpip.address().is_v6() ) 130 cout << "address " << tcpip.address().to_string() << " is v4" << std::endl; 131 }else if( tcpip.address().is_v6() ){ 131 132 ret |= SideportListener::ipv6; 133 cout << "address " << tcpip.address().to_string() << " is v6" << std::endl; 134 } 132 135 133 136 }else if( locator->instanceof<rfcomm_endpoint>() ){
Note:
See TracChangeset
for help on using the changeset viewer.