Ignore:
Timestamp:
Jul 24, 2009, 3:23:11 PM (15 years ago)
Author:
mies
Message:

+ added new transport modules and adapted ariba to them
+ exchange endpoint descriptors an link establishment
+ clean up of base communication
+ link establishment with in the presence of multiple endpoints
+ local discovery for ipv6, ipv4 and bluetooth mac addresses

File:
1 edited

Legend:

Unmodified
Added
Removed
  • source/ariba/communication/CommunicationEvents.cpp

    r3690 r5284  
    4848}
    4949
    50 bool CommunicationEvents::onLinkRequest( const LinkID& id, const NetworkLocator* local, const NetworkLocator* remote ) {
     50bool CommunicationEvents::onLinkRequest(const LinkID& id,
     51        const address_v* local, const address_v* remote) {
    5152        return true;
    5253}
    5354
    54 void CommunicationEvents::onLinkUp( const LinkID& id, const NetworkLocator* local, const NetworkLocator* remote ) {
     55void CommunicationEvents::onLinkUp(const LinkID& id, const address_v* local,
     56        const address_v* remote) {
    5557}
    5658
    57 void CommunicationEvents::onLinkDown( const LinkID& id, const NetworkLocator* local, const NetworkLocator* remote ) {
     59void CommunicationEvents::onLinkDown(const LinkID& id, const address_v* local,
     60        const address_v* remote) {
    5861}
    5962
    60 
    61 void CommunicationEvents::onLinkChanged( const LinkID& id, const NetworkLocator* oldlocal, const NetworkLocator* newlocal, const NetworkLocator* oldremote, const NetworkLocator* newremote ) {
     63void CommunicationEvents::onLinkChanged(const LinkID& id,
     64        const address_v* oldlocal, const address_v* newlocal,
     65        const address_v* oldremote, const address_v* newremote) {
    6266}
    6367
    64 void CommunicationEvents::onLinkFail( const LinkID& id, const NetworkLocator* local, const NetworkLocator* remote ){
     68void CommunicationEvents::onLinkFail(const LinkID& id, const address_v* local,
     69        const address_v* remote) {
    6570}
    6671
    67 void CommunicationEvents::onLinkQoSChanged( const LinkID& id, const NetworkLocator* local, const NetworkLocator* remote, const QoSParameterSet& qos ){
     72void CommunicationEvents::onLinkQoSChanged(const LinkID& id,
     73        const address_v* local, const address_v* remote, const QoSParameterSet& qos) {
    6874}
    6975
Note: See TracChangeset for help on using the changeset viewer.