Changeset 6875 for source/ariba/utility
- Timestamp:
- Nov 6, 2009, 1:02:17 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/utility/addressing/endpoint_set.hpp
r6829 r6875 187 187 if ( address->instanceof<tcpip_endpoint> () ) { 188 188 const tcpip_endpoint& addr = *address; 189 if (layers & Layer3 ) ip.insert( addr.address() );189 if (layers & Layer3 && !(layers & NoLoopback) && addr.is_loopback()) insert( addr.address() ); 190 190 if (layers & Layer4) tcp.insert( addr.port() ); 191 191 } else
Note:
See TracChangeset
for help on using the changeset viewer.