PeerInfo Class Reference

#include <PeerInfo.h>

Inheritance diagram for PeerInfo:

IPv4Info SimpleInfo

List of all members.


Detailed Description

Base class for providing additional underlay specific information associated with a certain transport address.

Public Member Functions

 PeerInfo (uint32_t type, int moduleId)
 constructor
virtual ~PeerInfo ()
bool isBootstrapped ()
 has the peer bootstrapped yet?
void setBootstrapped (bool bootstrap=true)
 sets or deletes the bootstrapped parameter
int getModuleID ()
 returns the moduleId of the peer
uint32_t getTypeID ()
 returns the type of the node
bool isMalicious ()
 is the peer malicious?
void setMalicious (bool malic=true)
 set the maliciousness of the peer

Protected Member Functions

virtual void dummy ()
 dummy-function to make PeerInfo polymorphic

Protected Attributes

bool bootstrapped
 true if node has bootstrapped
bool malicious
 true if the node is malicious
int moduleId
 the moduleId of the peer
uint32_t type
 ID of the node type.

Friends

std::ostream & operator<< (std::ostream &Stream, const PeerInfo info)
 standard output stream for PeerInfo, gives moduleID and true if peer has bootstrapped, false otherwise

Constructor & Destructor Documentation

PeerInfo::PeerInfo ( uint32_t  type,
int  moduleId 
)

constructor

00027 {
00028     bootstrapped = false;
00029     malicious = false;
00030     this->moduleId = moduleId;
00031     this->type = type;
00032 }

virtual PeerInfo::~PeerInfo (  )  [inline, virtual]

00044 {};


Member Function Documentation

bool PeerInfo::isBootstrapped (  )  [inline]

has the peer bootstrapped yet?

Returns:
true if the peer has bootstrapped, false otherwise
00051 { return bootstrapped; };

void PeerInfo::setBootstrapped ( bool  bootstrap = true  )  [inline]

sets or deletes the bootstrapped parameter

Parameters:
bootstrap true or () if peer has bootstrapped, false otherwise
00058 { bootstrapped = bootstrap; };

int PeerInfo::getModuleID (  )  [inline]

returns the moduleId of the peer

Returns:
the moduleId
00065 { return moduleId; };

uint32_t PeerInfo::getTypeID (  )  [inline]

returns the type of the node

Returns:
the node's typeID
00072 { return type; };

bool PeerInfo::isMalicious (  )  [inline]

is the peer malicious?

Returns:
true if the peer is malicious, false otherwise
00079 { return malicious; };

void PeerInfo::setMalicious ( bool  malic = true  )  [inline]

set the maliciousness of the peer

Parameters:
malic whether the peer is malicious or not
00086 { malicious = malic; };

void PeerInfo::dummy (  )  [protected, virtual]

dummy-function to make PeerInfo polymorphic

Reimplemented in IPv4Info, and SimpleInfo.

00034 {}


Friends And Related Function Documentation

std::ostream& operator<< ( std::ostream &  Stream,
const PeerInfo  info 
) [friend]

standard output stream for PeerInfo, gives moduleID and true if peer has bootstrapped, false otherwise

Parameters:
Stream the ostream
info the PeerInfo
Returns:
the output stream
00039 {
00040     Stream  << "ModuleId: " << info.moduleId << "Bootstrapped: ";
00041     if(info.bootstrapped) {
00042         return Stream << "true";
00043     }
00044     else {
00045         return Stream << "false";
00046     }
00047 }


Member Data Documentation

bool PeerInfo::bootstrapped [protected]

true if node has bootstrapped

bool PeerInfo::malicious [protected]

true if the node is malicious

int PeerInfo::moduleId [protected]

the moduleId of the peer

uint32_t PeerInfo::type [protected]

ID of the node type.


The documentation for this class was generated from the following files:
Generated on Thu Apr 17 13:19:30 2008 for ITM OverSim by  doxygen 1.5.3