Changeset 3690 for source/ariba/SpoVNetProperties.cpp
- Timestamp:
- May 26, 2009, 1:40:23 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/SpoVNetProperties.cpp
r2440 r3690 44 44 45 45 SpoVNetProperties::SpoVNetProperties() : 46 name( Name::random() ), type( ONE_HOP_OVERLAY ), idLength( 192 ),46 name( Name::random() ), type( CHORD_OVERLAY ), idLength( 192 ), 47 47 initiator( NodeID::UNSPECIFIED ), hidden( false ) { 48 48 … … 51 51 52 52 SpoVNetProperties::SpoVNetProperties(const SpoVNetProperties& copy) : 53 name( copy.name ), id( copy.id ), 53 name( copy.name ), id( copy.id ), 54 54 type( copy.type ), idLength( copy.idLength ), 55 55 initiator( copy.initiator ), hidden( copy.hidden ) { … … 88 88 << " name=" << name.toString() 89 89 << " id=" << id.toString() 90 << " overlay_type=" << type 91 << " id_length=" << idLength 90 << " overlay_type=" << type 91 << " id_length=" << idLength 92 92 << " initiator=" << initiator 93 93 << " hidden=" << hidden;
Note:
See TracChangeset
for help on using the changeset viewer.