Changeset 5781 for source


Ignore:
Timestamp:
Aug 7, 2009, 1:42:18 PM (15 years ago)
Author:
Christoph Mayer
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • source/ariba/SideportListener.cpp

    r5774 r5781  
    126126                ret |= SideportListener::tcp;
    127127
    128                 if( tcpip.address().is_v4() || tcpip.address().is_v4_mapped() )
     128                if( tcpip.address().is_v4() || tcpip.address().is_v4_mapped() ){
    129129                        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() ){
    131132                        ret |= SideportListener::ipv6;
     133                        cout << "address " << tcpip.address().to_string() << " is v6" << std::endl;
     134                }
    132135
    133136        }else if( locator->instanceof<rfcomm_endpoint>() ){
Note: See TracChangeset for help on using the changeset viewer.