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