Changeset 5284 for source/ariba/overlay/BaseOverlay.h
- Timestamp:
- Jul 24, 2009, 3:23:11 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/overlay/BaseOverlay.h
r5151 r5284 118 118 namespace overlay { 119 119 120 using namespace ariba::addressing; 121 120 122 class LinkDescriptor; 121 123 … … 285 287 * @see ariba::communication::CommunicationEvents.h 286 288 */ 287 virtual void onLinkUp(const LinkID& id, const NetworkLocator* local,288 const NetworkLocator* remote);289 290 /** 291 * @see ariba::communication::CommunicationEvents.h 292 */ 293 virtual void onLinkDown(const LinkID& id, const NetworkLocator* local,294 const NetworkLocator* remote);289 virtual void onLinkUp(const LinkID& id, const address_v* local, 290 const address_v* remote); 291 292 /** 293 * @see ariba::communication::CommunicationEvents.h 294 */ 295 virtual void onLinkDown(const LinkID& id, const address_v* local, 296 const address_v* remote); 295 297 296 298 /** … … 298 300 */ 299 301 virtual void onLinkChanged(const LinkID& id, 300 const NetworkLocator* oldlocal, const NetworkLocator* newlocal,301 const NetworkLocator* oldremote, const NetworkLocator* newremote);302 303 /** 304 * @see ariba::communication::CommunicationEvents.h 305 */ 306 virtual void onLinkFail(const LinkID& id, const NetworkLocator* local,307 const NetworkLocator* remote);302 const address_v* oldlocal, const address_v* newlocal, 303 const address_v* oldremote, const address_v* newremote); 304 305 /** 306 * @see ariba::communication::CommunicationEvents.h 307 */ 308 virtual void onLinkFail(const LinkID& id, const address_v* local, 309 const address_v* remote); 308 310 309 311 /** … … 311 313 */ 312 314 virtual void onLinkQoSChanged(const LinkID& id, 313 const NetworkLocator* local, const NetworkLocator* remote,315 const address_v* local, const address_v* remote, 314 316 const QoSParameterSet& qos); 315 317 … … 317 319 * @see ariba::communication::CommunicationEvents.h 318 320 */ 319 virtual bool onLinkRequest(const LinkID& id, const NetworkLocator* local,320 const NetworkLocator* remote);321 virtual bool onLinkRequest(const LinkID& id, const address_v* local, 322 const address_v* remote); 321 323 322 324 /**
Note:
See TracChangeset
for help on using the changeset viewer.