source: source/ariba/communication/BaseCommunication.cpp@ 5614

Last change on this file since 5614 was 5614, checked in by mies, 15 years ago

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

File size: 21.3 KB
Line 
1// [License]
2// The Ariba-Underlay Copyright
3//
4// Copyright (c) 2008-2009, Institute of Telematics, UniversitÀt Karlsruhe (TH)
5//
6// Institute of Telematics
7// UniversitÀt Karlsruhe (TH)
8// Zirkel 2, 76128 Karlsruhe
9// Germany
10//
11// Redistribution and use in source and binary forms, with or without
12// modification, are permitted provided that the following conditions are
13// met:
14//
15// 1. Redistributions of source code must retain the above copyright
16// notice, this list of conditions and the following disclaimer.
17// 2. Redistributions in binary form must reproduce the above copyright
18// notice, this list of conditions and the following disclaimer in the
19// documentation and/or other materials provided with the distribution.
20//
21// THIS SOFTWARE IS PROVIDED BY THE INSTITUTE OF TELEMATICS ``AS IS'' AND
22// ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
24// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE ARIBA PROJECT OR
25// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
26// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
27// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
28// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
29// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
30// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
31// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32//
33// The views and conclusions contained in the software and documentation
34// are those of the authors and should not be interpreted as representing
35// official policies, either expressed or implied, of the Institute of
36// Telematics.
37// [License]
38
39#include "BaseCommunication.h"
40
41#ifdef UNDERLAY_OMNET
42 #include "ariba/communication/modules/transport/omnet/AribaOmnetModule.h"
43 #include "ariba/communication/modules/network/omnet/OmnetNetworkProtocol.h"
44 #include "ariba/utility/system/StartupWrapper.h"
45
46 using ariba::communication::AribaOmnetModule;
47 using ariba::communication::OmnetNetworkProtocol;
48 using ariba::utility::StartupWrapper;
49#endif
50
51namespace ariba {
52namespace communication {
53
54#include "networkinfo/AddressDiscovery.hpp"
55
56use_logging_cpp(BaseCommunication);
57
58/// adds an endpoint to the list
59void BaseCommunication::add_endpoint( const address_v* endpoint ) {
60 BOOST_FOREACH( endpoint_reference& ref, remote_endpoints ) {
61 if (*ref.endpoint == *endpoint) {
62 ref.count++;
63 return;
64 }
65 }
66 endpoint_reference ref;
67 ref.endpoint = endpoint;
68 ref.count = 0;
69 remote_endpoints.push_back(ref);
70}
71
72/// removes an endpoint from the list
73void BaseCommunication::remove_endpoint( const address_v* endpoint ) {
74 for (vector<endpoint_reference>::iterator i = remote_endpoints.begin();
75 i != remote_endpoints.end(); i++) {
76 if (*i->endpoint == *endpoint) {
77 i->count--;
78 if (i->count==0) {
79 logging_info("No more links to " << i->endpoint->to_string() << ": terminating transports!");
80 transport->terminate(i->endpoint);
81 remote_endpoints.erase(i);
82 }
83 return;
84 }
85 }
86}
87
88BaseCommunication::BaseCommunication() {
89 this->transport = NULL;
90 this->started = false;
91}
92
93BaseCommunication::~BaseCommunication(){
94}
95
96void BaseCommunication::start() {
97 logging_info( "Starting up ..." );
98 currentSeqnum = 0;
99
100 // creating transports
101 logging_info( "Creating transports ..." );
102
103#ifdef UNDERLAY_OMNET
104 AribaOmnetModule* module = StartupWrapper::getCurrentModule();
105 module->setServerPort( listenport );
106
107 transport = module;
108 network = new OmnetNetworkProtocol( module );
109#else
110 transport = new transport_peer( localDescriptor.getEndpoints() );
111#endif
112
113 logging_info( "Searching for local locators ..." );
114 discover_endpoints(localDescriptor.getEndpoints());
115 logging_info( "Done. Local endpoints = " << localDescriptor.toString() );
116
117 transport->register_listener( this );
118 transport->start();
119
120#ifndef UNDERLAY_OMNET
121 // bind to the network change detection
122 networkMonitor.registerNotification( this );
123#endif
124
125 // base comm startup done
126 started = true;
127 logging_info( "Started up." );
128}
129
130void BaseCommunication::stop() {
131 logging_info( "Stopping transports ..." );
132
133 transport->stop();
134 delete transport;
135 started = false;
136
137 logging_info( "Stopped." );
138}
139
140bool BaseCommunication::isStarted(){
141 return started;
142}
143
144/// Sets the endpoints
145void BaseCommunication::setEndpoints( string& _endpoints ) {
146 localDescriptor.getEndpoints().assign(_endpoints);
147 logging_info("Setting local end-points: "
148 << localDescriptor.getEndpoints().to_string());
149}
150
151const LinkID BaseCommunication::establishLink(
152 const EndpointDescriptor& descriptor,
153 const LinkID& link_id,
154 const QoSParameterSet& qos,
155 const SecurityParameterSet& sec) {
156
157 // copy link id
158 LinkID linkid = link_id;
159
160 // debug
161 logging_debug( "Request to establish link" );
162
163 // create link identifier
164 if (linkid.isUnspecified()) linkid = LinkID::create();
165
166 // create link descriptor
167 logging_debug( "Creating new descriptor entry with local link id=" << linkid.toString() );
168 LinkDescriptor* ld = new LinkDescriptor();
169 ld->localLink = linkid;
170 addLink( ld );
171
172 // send a message to request new link to remote
173 logging_debug( "Send messages with request to open link to " << descriptor.toString() );
174 AribaBaseMsg baseMsg( AribaBaseMsg::typeLinkRequest, linkid );
175 baseMsg.getLocalDescriptor() = localDescriptor;
176
177 // serialize and send message
178 send( &baseMsg, descriptor );
179
180 return linkid;
181}
182
183void BaseCommunication::dropLink(const LinkID link) {
184
185 logging_debug( "Starting to drop link " + link.toString() );
186
187 // see if we have the link
188 LinkDescriptor& ld = queryLocalLink( link );
189 if( ld.isUnspecified() ) {
190 logging_error( "Don't know the link you want to drop "+ link.toString() );
191 return;
192 }
193
194 // tell the registered listeners
195 BOOST_FOREACH( CommunicationEvents* i, eventListener ) {
196 i->onLinkDown( link, ld.localLocator, ld.remoteLocator );
197 }
198
199 // create message to drop the link
200 logging_debug( "Sending out link close request. for us, the link is closed now" );
201 AribaBaseMsg msg( AribaBaseMsg::typeLinkClose, ld.localLink, ld.remoteLink );
202
203 // send message to drop the link
204 send( &msg, ld );
205
206 // remove from map
207 removeLink(link);
208}
209
210seqnum_t BaseCommunication::sendMessage( const LinkID lid, const Message* message) {
211
212 logging_debug( "Sending out message to link " << lid.toString() );
213
214 // query local link info
215 LinkDescriptor& ld = queryLocalLink(lid);
216 if( ld.isUnspecified() ){
217 logging_error( "Don't know the link with id " << lid.toString() );
218 return -1;
219 }
220
221 // link not up-> error
222 if( !ld.up ) {
223 logging_error("Can not send on link " << lid.toString() << ": link not up");
224 return -1;
225 }
226
227 // create message
228 AribaBaseMsg msg( AribaBaseMsg::typeData, ld.localLink, ld.remoteLink );
229
230 // encapsulate the payload message
231 msg.encapsulate( const_cast<Message*>(message) );
232
233 // send message
234 send( &msg, ld );
235
236 // return sequence number
237 return ++currentSeqnum;
238}
239
240const EndpointDescriptor& BaseCommunication::getEndpointDescriptor(const LinkID link) const {
241 if( link == LinkID::UNSPECIFIED){
242 return localDescriptor;
243 } else {
244 LinkDescriptor& linkDesc = queryLocalLink(link);
245 if (linkDesc.isUnspecified()) return EndpointDescriptor::UNSPECIFIED;
246 return linkDesc.remoteEndpoint;
247 }
248}
249
250void BaseCommunication::registerEventListener(CommunicationEvents* _events){
251 if( eventListener.find( _events ) == eventListener.end() )
252 eventListener.insert( _events );
253}
254
255void BaseCommunication::unregisterEventListener(CommunicationEvents* _events){
256 EventListenerSet::iterator i = eventListener.find( _events );
257 if( i != eventListener.end() )
258 eventListener.erase( i );
259}
260
261SystemEventType TransportEvent("Transport");
262SystemEventType MessageDispatchEvent("MessageDispatchEvent", TransportEvent );
263
264class DispatchMsg {
265public:
266 address_v* local;
267 address_v* remote;
268 Message* message;
269};
270
271/// called when a system event is emitted by system queue
272void BaseCommunication::handleSystemEvent(const SystemEvent& event) {
273
274 // dispatch received messages
275 if ( event.getType() == MessageDispatchEvent ){
276 logging_debug( "Forwarding message receiver" );
277 DispatchMsg* dmsg = event.getData<DispatchMsg>();
278 Message* msg = dmsg->message;
279 receiveMessage(msg, dmsg->local, dmsg->remote);
280 msg->dropPayload();
281 delete dmsg;
282 delete msg;
283 }
284}
285
286/// called when a message is received from transport_peer
287void BaseCommunication::receive_message(transport_protocol* transport,
288 const address_vf local, const address_vf remote, const uint8_t* data,
289 size_t size) {
290
291// logging_debug( "Dispatching message" );
292
293 // convert data
294 Data data_( const_cast<uint8_t*>(data), size * 8 );
295 DispatchMsg* dmsg = new DispatchMsg();
296
297 Message* msg = new Message(data_);
298 dmsg->local = local->clone();
299 dmsg->remote = remote->clone();
300 dmsg->message = msg;
301
302 SystemQueue::instance().scheduleEvent(
303 SystemEvent( this, MessageDispatchEvent, dmsg )
304 );
305}
306
307/// handles a message from the underlay transport
308void BaseCommunication::receiveMessage(const Message* message,
309 const address_v* local, const address_v* remote ){
310
311 /// decapsulate message
312 AribaBaseMsg* msg = ((Message*)message)->decapsulate<AribaBaseMsg>();
313 logging_debug( "Receiving message of type " << msg->getTypeString() );
314
315 // handle message
316 switch (msg->getType()) {
317
318 // ---------------------------------------------------------------------
319 // data message
320 // ---------------------------------------------------------------------
321 case AribaBaseMsg::typeData: {
322 logging_debug( "Received data message, forwarding to overlay" );
323 if( messageReceiver != NULL ) {
324 messageReceiver->receiveMessage(
325 msg, msg->getRemoteLink(), NodeID::UNSPECIFIED
326 );
327 }
328 break;
329 }
330
331 // ---------------------------------------------------------------------
332 // handle link request from remote
333 // ---------------------------------------------------------------------
334 case AribaBaseMsg::typeLinkRequest: {
335 logging_debug( "Received link open request" );
336
337 /// only answer the first request
338 if (!queryRemoteLink(msg->getLocalLink()).isUnspecified()) {
339 logging_debug("Link request already received. Ignore!");
340 break;
341 }
342
343 /// create link ids
344 LinkID localLink = LinkID::create();
345 LinkID remoteLink = msg->getLocalLink();
346 logging_debug( "local=" << local->to_string()
347 << " remote=" << remote->to_string()
348 );
349
350 // check if link creation is allowed by ALL listeners
351 bool allowlink = true;
352 BOOST_FOREACH( CommunicationEvents* i, eventListener ){
353 allowlink &= i->onLinkRequest( localLink, local, remote );
354 }
355
356 // not allowed-> warn
357 if( !allowlink ){
358 logging_warn( "Overlay denied creation of link" );
359 return;
360 }
361
362 // create descriptor
363 LinkDescriptor* ld = new LinkDescriptor();
364 ld->localLink = localLink;
365 ld->remoteLink = remoteLink;
366 ld->localLocator = local->clone();
367 ld->remoteLocator = remote->clone();
368 ld->remoteEndpoint = msg->getLocalDescriptor();
369
370 // add layer 1-3 addresses
371 ld->remoteEndpoint.getEndpoints().add(
372 ld->remoteLocator, endpoint_set::Layer1_3);
373 localDescriptor.getEndpoints().add(
374 local, endpoint_set::Layer1_3
375 );
376
377 // link is now up-> add it
378 ld->up = true;
379 addLink(ld);
380
381 // link is up!
382 logging_debug( "Link (initiated from remote) is up with "
383 << "local(id=" << ld->localLink.toString() << ","
384 << "locator=" << ld->localLocator->to_string() << ") "
385 << "remote(id=" << ld->remoteLink.toString() << ", "
386 << "locator=" << ld->remoteLocator->to_string() << ")"
387 );
388
389 // sending link request reply
390 logging_debug( "Sending link request reply with ids "
391 << "local=" << localLink.toString() << ", "
392 << "remote=" << remoteLink.toString() );
393 AribaBaseMsg reply( AribaBaseMsg::typeLinkReply, localLink, remoteLink );
394 reply.getLocalDescriptor() = localDescriptor;
395 reply.getRemoteDescriptor() = ld->remoteEndpoint;
396
397 send( &reply, *ld );
398
399 // inform listeners about new open link
400 BOOST_FOREACH( CommunicationEvents* i, eventListener ) {
401 i->onLinkUp( localLink, ld->localLocator, ld->remoteLocator);
402 }
403
404 // done
405 break;
406 }
407
408 // ---------------------------------------------------------------------
409 // handle link request reply
410 // ---------------------------------------------------------------------
411 case AribaBaseMsg::typeLinkReply: {
412 logging_debug( "Received link open reply for a link we initiated" );
413
414 // this is a reply to a link open request, so we have already
415 // a link mapping and can now set the remote link to valid
416 LinkDescriptor& ld = queryLocalLink( msg->getRemoteLink() );
417
418 // no link found-> warn!
419 if (ld.isUnspecified()) {
420 logging_warn("Failed to find local link " << msg->getRemoteLink().toString());
421 return;
422 }
423
424 // set remote locator and link id
425 ld.remoteLink = msg->getLocalLink();
426 ld.remoteLocator = remote->clone();
427 localDescriptor.getEndpoints().add(
428 msg->getRemoteDescriptor().getEndpoints(),
429 endpoint_set::Layer1_3
430 );
431 ld.up = true;
432
433 logging_debug( "Link is now up with local id "
434 << ld.localLink.toString() << " and remote id "
435 << ld.remoteLink.toString() );
436
437
438 // inform lisneters about link up event
439 BOOST_FOREACH( CommunicationEvents* i, eventListener ){
440 i->onLinkUp( ld.localLink, ld.localLocator, ld.remoteLocator );
441 }
442
443 // done
444 break;
445 }
446
447 // ---------------------------------------------------------------------
448 // handle link close requests
449 // ---------------------------------------------------------------------
450 case AribaBaseMsg::typeLinkClose: {
451 // get remote link
452 const LinkID& localLink = msg->getRemoteLink();
453 logging_debug( "Received link close request for link " << localLink.toString() );
454
455 // searching for link, not found-> warn
456 LinkDescriptor& linkDesc = queryLocalLink( localLink );
457 if (linkDesc.isUnspecified()) {
458 logging_warn("Failed to find local link " << localLink.toString());
459 return;
460 }
461
462 // inform listeners
463 BOOST_FOREACH( CommunicationEvents* i, eventListener ){
464 i->onLinkDown( linkDesc.localLink,
465 linkDesc.localLocator, linkDesc.remoteLocator );
466 }
467
468 // remove the link descriptor
469 removeLink( localLink );
470
471 // done
472 break;
473 }
474
475 // ---------------------------------------------------------------------
476 // handle link locator changes
477 // ---------------------------------------------------------------------
478 case AribaBaseMsg::typeLinkUpdate: {
479 const LinkID& localLink = msg->getRemoteLink();
480 logging_debug( "Received link update for link "
481 << localLink.toString() );
482
483 // find the link description
484 LinkDescriptor& linkDesc = queryLocalLink( localLink );
485 if (linkDesc.isUnspecified()) {
486 logging_warn("Failed to update local link "
487 << localLink.toString());
488 return;
489 }
490
491 // update the remote locator
492 const address_v* oldremote = linkDesc.remoteLocator;
493 linkDesc.remoteLocator = remote->clone();
494
495 // inform the listeners (local link has _not_ changed!)
496 BOOST_FOREACH( CommunicationEvents* i, eventListener ){
497 i->onLinkChanged(
498 linkDesc.localLink, // linkid
499 linkDesc.localLocator, // old local
500 linkDesc.localLocator, // new local
501 oldremote, // old remote
502 linkDesc.remoteLocator // new remote
503 );
504 }
505
506 // done
507 break;
508 }
509 }
510}
511
512/// add a newly allocated link to the set of links
513void BaseCommunication::addLink( LinkDescriptor* link ) {
514 add_endpoint(link->remoteLocator);
515 linkSet.push_back( link );
516}
517
518/// remove a link from set
519void BaseCommunication::removeLink( const LinkID& localLink ) {
520 for(LinkSet::iterator i=linkSet.begin(); i != linkSet.end(); i++){
521 if( (*i)->localLink != localLink) continue;
522 remove_endpoint((*i)->remoteLocator);
523 delete *i;
524 linkSet.erase( i );
525 break;
526 }
527}
528
529/// query a descriptor by local link id
530BaseCommunication::LinkDescriptor& BaseCommunication::queryLocalLink( const LinkID& link ) const {
531 for (int i=0; i<linkSet.size();i++)
532 if (linkSet[i]->localLink == link) return (LinkDescriptor&)*linkSet[i];
533
534 LinkDescriptor ret;
535 ret.unspecified = true;
536 return ret;
537}
538
539/// query a descriptor by remote link id
540BaseCommunication::LinkDescriptor& BaseCommunication::queryRemoteLink( const LinkID& link ) const {
541 for (int i=0; i<linkSet.size();i++)
542 if (linkSet[i]->remoteLink == link) return (LinkDescriptor&)*linkSet[i];
543
544 LinkDescriptor ret;
545 ret.unspecified = true;
546 return ret;
547}
548
549LinkIDs BaseCommunication::getLocalLinks( const address_v* addr ) const {
550 LinkIDs ids;
551 for (int i=0; i<linkSet.size(); i++){
552 if( addr == NULL ){
553 ids.push_back( linkSet[i]->localLink );
554 } else {
555 if ( *linkSet[i]->remoteLocator == *addr )
556 ids.push_back( linkSet[i]->localLink );
557 }
558 }
559 return ids;
560}
561
562void BaseCommunication::onNetworkChange(const NetworkChangeInterface::NetworkChangeInfo& info){
563
564#ifdef UNDERLAY_OMNET
565
566 // we have no mobility support for simulations
567 return
568
569#endif // UNDERLAY_OMNET
570
571/*- disabled!
572
573 // we only care about address changes, not about interface changes
574 // as address changes are triggered by interface changes, we are safe here
575 if( info.type != NetworkChangeInterface::EventTypeAddressNew &&
576 info.type != NetworkChangeInterface::EventTypeAddressDelete ) return;
577
578 logging_info( "base communication is handling network address changes" );
579
580 // get all now available addresses
581 NetworkInformation networkInformation;
582 AddressInformation addressInformation;
583
584 NetworkInterfaceList interfaces = networkInformation.getInterfaces();
585 AddressList addresses;
586
587 for( NetworkInterfaceList::iterator i = interfaces.begin(); i != interfaces.end(); i++ ){
588 AddressList newaddr = addressInformation.getAddresses(*i);
589 addresses.insert( addresses.end(), newaddr.begin(), newaddr.end() );
590 }
591
592 //
593 // get current locators for the local endpoint
594 // TODO: this code is dublicate of the ctor code!!! cleanup!
595 //
596
597 NetworkProtocol::NetworkLocatorSet locators = network->getAddresses();
598 NetworkProtocol::NetworkLocatorSet::iterator i = locators.begin();
599 NetworkProtocol::NetworkLocatorSet::iterator iend = locators.end();
600
601 //
602 // remember the old local endpoint, in case it changes
603 //
604
605 EndpointDescriptor oldLocalDescriptor( localDescriptor );
606
607 //
608 // look for local locators that we can use in communication
609 //
610 // choose the first locator that is not localhost
611 //
612
613 bool foundLocator = false;
614 bool changedLocator = false;
615
616 for( ; i != iend; i++){
617 logging_debug( "local locator found " << (*i)->toString() );
618 IPv4Locator* ipv4locator = dynamic_cast<IPv4Locator*>(*i);
619
620 if( *ipv4locator != IPv4Locator::LOCALHOST &&
621 *ipv4locator != IPv4Locator::ANY &&
622 *ipv4locator != IPv4Locator::BROADCAST ){
623
624 ipv4locator->setPort( listenport );
625 changedLocator = *localDescriptor.locator != *ipv4locator;
626 localDescriptor.locator = ipv4locator;
627 logging_info( "binding to addr = " << ipv4locator->toString() );
628 foundLocator = true;
629 break;
630 }
631 } // for( ; i != iend; i++)
632
633 //
634 // if we found no locator, bind to localhost
635 //
636
637 if( !foundLocator ){
638 changedLocator = *localDescriptor.locator != IPv4Locator::LOCALHOST;
639 localDescriptor.locator = new IPv4Locator( IPv4Locator::LOCALHOST );
640 ((IPv4Locator*)(localDescriptor.locator))->setPort( listenport );
641 logging_info( "found no good local lcoator, binding to addr = " <<
642 localDescriptor.locator->toString() );
643 }
644
645 //
646 // if we have connections that have no more longer endpoints
647 // close these. they will be automatically built up again.
648 // also update the local locator in the linkset mapping
649 //
650
651 if( changedLocator ){
652
653 logging_debug( "local endp locator has changed to " << localDescriptor.toString() <<
654 ", resettings connections that end at old locator " <<
655 oldLocalDescriptor.toString());
656
657 LinkSet::iterator i = linkSet.begin();
658 LinkSet::iterator iend = linkSet.end();
659
660 for( ; i != iend; i++ ){
661
662 logging_debug( "checking connection for locator change: " <<
663 " local " << (*i).localLocator->toString() <<
664 " old " << oldLocalDescriptor.locator->toString() );
665
666 if( *((*i).localLocator) == *(oldLocalDescriptor.locator) ){
667
668 logging_debug("terminating connection to " << (*i).remoteLocator->toString() );
669 transport->terminate( oldLocalDescriptor.locator, (*i).remoteLocator );
670
671 (*i).localLocator = localDescriptor.locator;
672 }
673 } // for( ; i != iend; i++ )
674
675 // wait 500ms to give the sockets time to shut down
676 usleep( 500000 );
677
678 } else {
679
680 logging_debug( "locator has not changed, not resetting connections" );
681
682 }
683
684 //
685 // handle the connections that have no longer any
686 // valid locator. send update messages with the new
687 // locator, so the remote node updates its locator/link mapping
688 //
689
690 LinkSet::iterator iAffected = linkSet.begin();
691 LinkSet::iterator endAffected = linkSet.end();
692
693 for( ; iAffected != endAffected; iAffected++ ){
694 LinkDescriptor descr = *iAffected;
695 logging_debug( "sending out link locator update to " << descr.remoteLocator->toString() );
696
697 AribaBaseMsg updateMsg( descr.remoteLocator,
698 AribaBaseMsg::LINK_STATE_UPDATE,
699 descr.localLink, descr.remoteLink );
700
701 transport->sendMessage( &updateMsg );
702 }
703*/
704}
705
706/// sends a message to all end-points in the end-point descriptor
707void BaseCommunication::send(Message* message, const EndpointDescriptor& endpoint) {
708 Data data = data_serialize( message, DEFAULT_V );
709 transport->send( endpoint.getEndpoints(), data.getBuffer(), data.getLength() / 8);
710}
711
712/// sends a message to the remote locator inside the link descriptor
713void BaseCommunication::send(Message* message, const LinkDescriptor& desc) {
714 Data data = data_serialize( message, DEFAULT_V );
715 transport->send( desc.remoteLocator, data.getBuffer(), data.getLength() / 8);
716}
717
718}} // namespace ariba, communication
Note: See TracBrowser for help on using the repository browser.