00001 00002 #include "LinkRequest.h" 00003 00004 namespace ariba { 00005 namespace overlay { 00006 00007 vsznDefault(LinkRequest); 00008 00009 LinkRequest::LinkRequest() { 00010 00011 } 00012 00013 LinkRequest::LinkRequest( uint32_t nonce, const EndpointDescriptor* endpoint, bool reply ) : 00014 flags(reply&1), nonce(nonce), endpoint(endpoint) { 00015 } 00016 00017 LinkRequest::~LinkRequest() { 00018 } 00019 00020 }} // ariba::overlay