source: source/ariba/overlay/messages/LinkRequest.cpp@ 3690

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

Merged 20090512-mies-connectors changes r3472:r3689 into trunk.

File size: 328 bytes
Line 
1
2#include "LinkRequest.h"
3
4namespace ariba {
5namespace overlay {
6
7vsznDefault(LinkRequest);
8
9LinkRequest::LinkRequest() {
10
11}
12
13LinkRequest::LinkRequest( uint32_t nonce, const EndpointDescriptor* endpoint, bool reply ) :
14 flags(reply&1), nonce(nonce), endpoint(endpoint) {
15}
16
17LinkRequest::~LinkRequest() {
18}
19
20}} // ariba::overlay
Note: See TracBrowser for help on using the repository browser.