Changeset 5628 for source/ariba/communication
- Timestamp:
- Aug 3, 2009, 4:43:36 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/communication/BaseCommunication.cpp
r5624 r5628 58 58 /// adds an endpoint to the list 59 59 void BaseCommunication::add_endpoint( const address_v* endpoint ) { 60 if (endpoint==NULL) return; 60 61 BOOST_FOREACH( endpoint_reference& ref, remote_endpoints ) { 61 62 if (*ref.endpoint == *endpoint) { … … 72 73 /// removes an endpoint from the list 73 74 void BaseCommunication::remove_endpoint( const address_v* endpoint ) { 75 if (endpoint==NULL) return; 74 76 for (vector<endpoint_reference>::iterator i = remote_endpoints.begin(); 75 77 i != remote_endpoints.end(); i++) {
Note:
See TracChangeset
for help on using the changeset viewer.