Ignore:
Timestamp:
Aug 3, 2009, 11:35:20 AM (15 years ago)
Author:
mies
Message:

added termination of transports when no link is up anymore to an end-point

File:
1 edited

Legend:

Unmodified
Added
Removed
  • source/ariba/utility/transport/transport_peer.cpp

    r5284 r5614  
    5656}
    5757
    58 void transport_peer::terminate( const address_v* local, const address_v* remote ) {
     58void transport_peer::terminate( const address_v* remote ) {
    5959        if (remote->instanceof<tcpip_endpoint>() && tcp!=NULL)
    60                 tcp->terminate(local,remote);
     60                tcp->terminate(remote);
    6161        if (remote->instanceof<rfcomm_endpoint>() && rfc!=NULL)
    62                 rfc->terminate(local,remote);
     62                rfc->terminate(remote);
    6363}
    6464
Note: See TracChangeset for help on using the changeset viewer.