Changeset 2473 for source/ariba/interface/UnderlayAbstraction.cpp
- Timestamp:
- Feb 23, 2009, 2:21:49 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/interface/UnderlayAbstraction.cpp
r2472 r2473 86 86 } 87 87 88 void UnderlayAbstraction::destroySpoVNet(AribaContext* ctx) {89 ctx->getOverlay().leaveSpoVNet();90 delete &ctx->getOverlay();91 delete &ctx->getBaseCommunication();92 delete ctx;93 }94 95 88 AribaContext* UnderlayAbstraction::joinSpoVNet(const SpoVNetID& spovnetid, const EndpointDescriptor& bootstrapnode, const NodeID& nodeid, const NetworkLocator* locallocator, const uint16_t localport) { 96 89 … … 107 100 108 101 void UnderlayAbstraction::leaveSpoVNet(AribaContext* ctx) { 109 destroySpoVNet( ctx ); 102 ctx->getOverlay().leaveSpoVNet(); 103 delete &ctx->getOverlay(); 104 delete &ctx->getBaseCommunication(); 105 delete ctx; 110 106 } 111 107
Note:
See TracChangeset
for help on using the changeset viewer.