#include <TransportAddress.h>

Classes | |
| class | hashFcn |
| defines a hash function for TransportAddress More... | |
Public Types | |
| enum | NatType { UNKNOWN_NAT = 0, NO_NAT = 1, FULL_CONE_NAT = 2, PORT_RESTRICTED_NAT = 3, SYMMETRIC_NAT = 4 } |
| typedef UNORDERED_SET < TransportAddress, hashFcn > | Set |
| a hashed set of TransportAddresses | |
Public Member Functions | |
| TransportAddress () | |
| Constructs a unspecified TransportAddress. | |
| virtual | ~TransportAddress () |
| Standard destructor. | |
| TransportAddress (const TransportAddress &handle) | |
| Copy constructor. | |
| TransportAddress (const IPvXAddress &ip, int port=-1, NatType natType=UNKNOWN_NAT) | |
| Complete constructor. | |
| bool | operator== (const TransportAddress &rhs) const |
| compares this to a given TransportAddress | |
| bool | operator!= (const TransportAddress &rhs) const |
| compares this to a given TransportAddress | |
| bool | operator< (const TransportAddress &rhs) const |
| compares this to a given TransportAddress | |
| bool | operator> (const TransportAddress &rhs) const |
| compares this to a given TransportAddress | |
| bool | operator<= (const TransportAddress &rhs) const |
| compares this to a given TransportAddress | |
| bool | operator>= (const TransportAddress &rhs) const |
| compares this to a given TransportAddress | |
| TransportAddress & | operator= (const TransportAddress &rhs) |
| assigns ip and port of rhs to this->ip and this->port | |
| void | setAddress (const IPvXAddress &ip, int port=-1, NatType natType=UNKNOWN_NAT) |
| Sets the ip address, port and NAT type. | |
| void | appendSourceRoute (const TransportAddress &sourceRoute) |
| Appends a source route to this TransportAddress. | |
| void | clearSourceRoute () |
| Clears the source route of this TransportAddress. | |
| void | setPort (int port) |
| sets this->port to the given port | |
| const IPvXAddress & | getAddress () const |
| returns ip address | |
| int | getPort () const |
| returns port | |
| NatType | getNatType () const |
| returns the type of NAT this node is behind | |
| size_t | getSourceRouteSize () const |
| Returns the length of the source route to reach this node. | |
| const TransportAddressVector & | getSourceRoute () const |
| Returns source route used to reach this node. | |
| bool | isUnspecified () const |
| indicates if TransportAddress is specified | |
| size_t | hash () const |
| creates a hash value of ip and port | |
| virtual TransportAddress * | dup () const |
| returns a copy of the TransportAddress | |
Static Public Attributes | |
| static const TransportAddress | UNSPECIFIED_NODE |
| TransportAddress without specified ip and port. | |
| static const TransportAddressVector | UNSPECIFIED_NODES |
Protected Attributes | |
| IPvXAddress | ip |
| the ip of this TransportAddress object | |
| int | port |
| the port of this TransportAddress object | |
Private Member Functions | |
| void | assertUnspecified (const TransportAddress &handle) const |
| throws an opp_error if this or handle is unspecified | |
Private Attributes | |
| NatType | natType |
| the assumed type of a NAT this node is behind (work in progress and currently not used | |
| TransportAddressVector | sourceRoute |
| source route for NAT traversal | |
Friends | |
| std::ostream & | operator<< (std::ostream &os, const TransportAddress &n) |
| standard output stream for TransportAddress, gives out ip and port | |
It covers the complete node information, like IP-Address, and port. The information can be sparse, so parts can be omited by setting the property to an unspecified value.
Definition at line 49 of file TransportAddress.h.
| typedef UNORDERED_SET<TransportAddress, hashFcn> TransportAddress::Set |
a hashed set of TransportAddresses
Reimplemented in NodeHandle.
Definition at line 76 of file TransportAddress.h.
Definition at line 66 of file TransportAddress.h.
00066 { 00067 UNKNOWN_NAT = 0, 00068 NO_NAT = 1, 00069 FULL_CONE_NAT = 2, 00070 PORT_RESTRICTED_NAT = 3, 00071 SYMMETRIC_NAT = 4 00072 };
| TransportAddress::TransportAddress | ( | ) |
Constructs a unspecified TransportAddress.
Definition at line 55 of file TransportAddress.cc.
Referenced by appendSourceRoute(), and dup().
00056 { 00057 port = -1; 00058 natType = UNKNOWN_NAT; 00059 }
| virtual TransportAddress::~TransportAddress | ( | ) | [inline, virtual] |
| TransportAddress::TransportAddress | ( | const TransportAddress & | handle | ) |
Copy constructor.
| handle | The TransportAddress to copy |
Definition at line 62 of file TransportAddress.cc.
00063 { 00064 port = handle.port; 00065 ip = handle.ip; 00066 natType = handle.natType; 00067 sourceRoute = handle.sourceRoute; 00068 }
| TransportAddress::TransportAddress | ( | const IPvXAddress & | ip, | |
| int | port = -1, |
|||
| NatType | natType = UNKNOWN_NAT | |||
| ) |
| void TransportAddress::appendSourceRoute | ( | const TransportAddress & | sourceRoute | ) |
Appends a source route to this TransportAddress.
| sourceRoute | the source route to append |
Definition at line 185 of file TransportAddress.cc.
Referenced by doUnpacking().
00186 { 00187 sourceRoute.push_back(TransportAddress(add.ip, add.port, add.natType)); 00188 const TransportAddressVector& sr = add.getSourceRoute(); 00189 for (size_t i = 0; i < sr.size(); i++) { 00190 if (sr[i].getSourceRouteSize() > 0) { 00191 throw cRuntimeError("TransportAddress::appendSourceRoute(): " 00192 "Trying to add source route to source route!"); 00193 } 00194 sourceRoute.push_back(TransportAddress(sr[i].ip, sr[i].port, 00195 sr[i].natType)); 00196 } 00197 }
| void TransportAddress::assertUnspecified | ( | const TransportAddress & | handle | ) | const [inline, private] |
throws an opp_error if this or handle is unspecified
| handle | the TransportAddress to check |
Definition at line 220 of file TransportAddress.cc.
Referenced by operator!=(), operator<(), operator<=(), operator==(), operator>(), and operator>=().
00221 { 00222 if ( this->isUnspecified() || handle.isUnspecified() ) 00223 opp_error("TransportAddress: Trying to compare unspecified TransportAddress!"); 00224 }
| void TransportAddress::clearSourceRoute | ( | ) | [inline] |
Clears the source route of this TransportAddress.
Definition at line 205 of file TransportAddress.h.
00205 { sourceRoute.clear(); };
| TransportAddress * TransportAddress::dup | ( | ) | const [virtual] |
returns a copy of the TransportAddress
Reimplemented in NodeHandle.
Definition at line 214 of file TransportAddress.cc.
Referenced by BaseRpc::sendRpcCall().
00215 { 00216 return new TransportAddress(*this); 00217 }
| const IPvXAddress & TransportAddress::getAddress | ( | ) | const |
returns ip address
Definition at line 155 of file TransportAddress.cc.
Referenced by GlobalNodeList::addPeer(), Quon::addSite(), BasePastry::baseInit(), oversim::Nice::becomeRendevouzPoint(), BaseOverlay::bindToPort(), BaseApp::bindToPort(), I3BaseApp::bootstrapI3(), BootstrapNodeHandle::BootstrapNodeHandle(), BrooseHandle::BrooseHandle(), BaseApp::callRoute(), BaseOverlay::callUpdate(), Vast::changeState(), Quon::changeState(), Gia::changeState(), oversim::Chord::changeState(), Pastry::checkProxCache(), oversim::Chord::closestPreceedingNode(), oversim::Nice::ClusterMerge(), oversim::Nice::ClusterSplit(), I3SubIdentifier::compareTo(), Nps::coordsReqRpcResponse(), Quon::deleteSite(), RealWorldTestApp::deliver(), KBRTestApp::deliver(), Scribe::deliverALMDataToGroup(), Broose::displayBucketState(), doPacking(), BasePastry::doRoutingTableMaintenance(), Pastry::doSecondStage(), NeighborCache::estimateProx(), PastryRoutingTable::failedNode(), PastryNeighborhoodSet::failedNode(), PastryLeafSet::failedNode(), oversim::Nice::findClusterLeader(), BaseOverlay::findNodeRpc(), KBRTestApp::forward(), GlobalNodeList::getBootstrapNode(), BrooseBucket::getFailedResponses(), Nps::getLandmarks(), BrooseBucket::getLastSeen(), GlobalNodeList::getPeerInfo(), BrooseBucket::getPos(), Gia::getRoute(), BrooseBucket::getRTT(), oversim::Nice::gracefulLeave(), PubSubMMOG::handleAdoptChildCall(), PubSubMMOG::handleAdoptChildResponse(), Vast::handleAppMessage(), Quon::handleAppMessage(), BaseOverlay::handleBaseOverlayMessage(), BaseApp::handleCommonAPIMessage(), Pastry::handleFailedNode(), CBRDHT::handleGetResponse(), oversim::Nice::handleHeartbeat(), PubSubMMOG::handleHelpResponse(), PubSubMMOG::handleIntermediateResponse(), oversim::Nice::handleJoinCluster(), Scribe::handleJoinMessage(), Scribe::handleJoinResponse(), KBRTestApp::handleLookupResponse(), BootstrapList::handleLookupResponse(), SimpleGameClient::handleLowerMessage(), GIASearchApp::handleLowerMessage(), XmlRpcInterface::handleMessage(), BaseOverlay::handleMessage(), BaseApp::handleMessage(), PubSubMMOG::handleMoveMessage(), Vast::handleNodeLeaveNotification(), PubSubMMOG::handlePingCall(), Scribe::handlePublishCall(), Scribe::handlePublishResponse(), oversim::Nice::handleQuery(), SimpleGameClient::handleRealworldPacket(), BasePastry::handleRequestMessage(), oversim::Koorde::handleRpcCall(), oversim::Chord::handleRpcCall(), oversim::Chord::handleRpcNotifyResponse(), Scribe::handleRpcResponse(), PubSubMMOG::handleRpcResponse(), oversim::Koorde::handleRpcResponse(), KBRTestApp::handleRpcResponse(), oversim::Chord::handleRpcResponse(), Broose::handleRpcResponse(), BootstrapList::handleRpcResponse(), PubSubMMOG::handleRpcTimeout(), PubSubLobby::handleRpcTimeout(), oversim::Koorde::handleRpcTimeout(), Kademlia::handleRpcTimeout(), oversim::Chord::handleRpcTimeout(), Broose::handleRpcTimeout(), Pastry::handleStateMessage(), Bamboo::handleStateMessage(), SimpleGameClient::handleTimerEvent(), Scribe::handleTimerEvent(), Pastry::handleTimerEvent(), GIASearchApp::handleTimerEvent(), DHTTestApp::handleTimerEvent(), Bamboo::handleTimerEvent(), Vast::handleUDPMessage(), Quon::handleUDPMessage(), Pastry::handleUDPMessage(), oversim::Nice::handleUDPMessage(), Bamboo::handleUDPMessage(), Scribe::handleUpperMessage(), BrooseBucket::increaseFailedResponses(), SimpleGameClient::initializeApp(), Landmark::initializeApp(), BootstrapList::initializeApp(), I3::insertTrigger(), BaseRpc::internalHandleRpcMessage(), oversim::Nice::JoinCluster(), IterativeLookup::lookup(), SendToKeyListener::lookupFinished(), BaseOverlay::lookupRpc(), oversim::Nice::maintenance(), Pastry::mergeState(), BasePastry::newLeafs(), NodeHandle::NodeHandle(), BrooseHandle::operator!=(), __gnu_cxx::hash< TransportAddress >::operator()(), operator<<(), GiaNode::operator=(), BrooseHandle::operator=(), BrooseHandle::operator==(), BrooseBucket::output(), BasePastry::pingNodes(), BootstrapList::pingResponse(), BasePastry::pingResponse(), oversim::Chord::pingTimeout(), BootstrapList::pingTimeout(), BasePastry::pingTimeout(), oversim::Nice::pollRP(), BasePastry::proxCallback(), Quon::purgeSites(), oversim::Nice::Query(), GlobalNodeList::refreshEntry(), I3BaseApp::refreshTriggers(), GlobalNodeList::registerPeer(), oversim::Nice::Remove(), BrooseBucket::remove(), GlobalNodeList::removePeer(), BrooseBucket::resetFailedResponses(), BaseOverlay::route(), Vast::sendDiscardNode(), Vast::sendMessage(), Quon::sendMessage(), BaseOverlay::sendMessageToUDP(), BaseApp::sendMessageToUDP(), I3::sendPacket(), I3::sendQueryReply(), BaseOverlay::sendRouteMessage(), BasePastry::sendStateTables(), Vast::sendToApp(), Quon::sendToApp(), BaseOverlay::sendToKey(), BrooseBucket::setLastSeen(), BrooseBucket::setRTT(), Nps::showReceivedCoords(), PubSubMMOG::startTimer(), Scribe::subscribeToGroup(), SimpleGameClient::updateNeighbors(), NeighborCache::updateNode(), Quon::updateThisSite(), oversim::Koorde::updateTooltip(), Broose::updateTooltip(), and oversim::Nice::updateVisualization().
00156 { 00157 return ip; 00158 }
| TransportAddress::NatType TransportAddress::getNatType | ( | ) | const |
returns the type of NAT this node is behind
Definition at line 167 of file TransportAddress.cc.
Referenced by doPacking().
00168 { 00169 return natType; 00170 }
| int TransportAddress::getPort | ( | ) | const |
returns port
Definition at line 161 of file TransportAddress.cc.
Referenced by BootstrapNodeHandle::BootstrapNodeHandle(), BrooseHandle::BrooseHandle(), Gia::changeState(), I3SubIdentifier::compareTo(), doPacking(), Gia::getRoute(), Gia::handleUDPMessage(), I3::initializeApp(), NodeHandle::NodeHandle(), BrooseHandle::operator!=(), __gnu_cxx::hash< TransportAddress >::operator()(), operator<<(), GiaNode::operator=(), BrooseHandle::operator=(), BrooseHandle::operator==(), BaseOverlay::sendMessageToUDP(), and BaseApp::sendMessageToUDP().
00162 { 00163 return port; 00164 }
| const TransportAddressVector & TransportAddress::getSourceRoute | ( | ) | const |
Returns source route used to reach this node.
Definition at line 179 of file TransportAddress.cc.
Referenced by doPacking(), BaseRpc::internalHandleRpcMessage(), operator<<(), and BaseRpc::sendRpcCall().
00180 { 00181 return sourceRoute; 00182 }
| size_t TransportAddress::getSourceRouteSize | ( | ) | const |
Returns the length of the source route to reach this node.
Definition at line 173 of file TransportAddress.cc.
Referenced by appendSourceRoute(), doPacking(), BaseRpc::internalHandleRpcMessage(), operator<<(), and BaseRpc::sendRpcCall().
00174 { 00175 return sourceRoute.size(); 00176 }
| size_t TransportAddress::hash | ( | ) | const |
creates a hash value of ip and port
Definition at line 201 of file TransportAddress.cc.
Referenced by TransportAddress::TransportAddress::hashFcn::operator()().
00202 { 00203 size_t iphash; 00204 if (ip.isIPv6()) { 00205 uint32_t* addr = (uint32_t*) ip.get6().words(); 00206 iphash = (size_t)(addr[0]^addr[1]^addr[2]^addr[3]); 00207 } else { 00208 iphash = (size_t)ip.get4().getInt(); 00209 } 00210 00211 return (size_t)(iphash^port); 00212 }
| bool TransportAddress::isUnspecified | ( | ) | const |
indicates if TransportAddress is specified
Reimplemented in NodeHandle.
Definition at line 81 of file TransportAddress.cc.
Referenced by assertUnspecified(), BasePastry::baseChangeState(), oversim::Nice::changeState(), oversim::Chord::changeState(), Pastry::checkProxCache(), oversim::Nice::ClusterMerge(), oversim::Nice::ClusterSplit(), Bamboo::doLeafsetMaintenance(), BasePastry::doRoutingTableMaintenance(), PubSubLobby::failedNode(), PastryRoutingTable::failedNode(), PastryLeafSet::failedNode(), oversim::Nice::findCenter(), PastryRoutingTable::findNextNodeToAsk(), BasePastry::findNode(), oversim::Nice::gracefulLeave(), Pastry::handleFailedNode(), Kademlia::handleFailedNode(), Bamboo::handleFailedNode(), oversim::Nice::handleHeartbeat(), Vast::handleJoin(), Quon::handleJoin(), Broose::handleJoinTimerExpired(), oversim::Chord::handleRpcStabilizeResponse(), Kademlia::handleRpcTimeout(), Pastry::handleStateMessage(), P2pns::handleTimerEvent(), oversim::Nice::handleUDPMessage(), BaseRpc::internalHandleRpcMessage(), Pastry::joinOverlay(), Kademlia::joinOverlay(), Broose::joinOverlay(), Bamboo::joinOverlay(), oversim::Nice::maintenance(), operator<<(), P2pns::pingTimeout(), BootstrapList::removeBootstrapCandidate(), PastryLeafSet::repair(), oversim::Chord::rpcNotify(), BasePastry::sendLeafset(), BasePastry::sendRequest(), BaseRpc::sendRouteRpcCall(), BasePastry::sendRoutingRow(), BaseRpc::sendRpcResponse(), P2pns::updateIdCacheWithNewTransport(), and oversim::Nice::updateVisualization().
| bool TransportAddress::operator!= | ( | const TransportAddress & | rhs | ) | const |
compares this to a given TransportAddress
| rhs | the TransportAddress this is compared to |
Definition at line 103 of file TransportAddress.cc.
00104 { 00105 assertUnspecified(rhs); 00106 return !(this->ip == rhs.ip && this->port == rhs.port ); 00107 }
| bool TransportAddress::operator< | ( | const TransportAddress & | rhs | ) | const |
compares this to a given TransportAddress
| rhs | the TransportAddress this is compared to |
Definition at line 110 of file TransportAddress.cc.
00111 { 00112 assertUnspecified(rhs); 00113 return this->ip < rhs.ip; 00114 }
| bool TransportAddress::operator<= | ( | const TransportAddress & | rhs | ) | const |
compares this to a given TransportAddress
| rhs | the TransportAddress this is compared to |
Definition at line 124 of file TransportAddress.cc.
00125 { 00126 assertUnspecified(rhs); 00127 return this->ip < rhs.ip || this->ip == rhs.ip; 00128 }
| TransportAddress & TransportAddress::operator= | ( | const TransportAddress & | rhs | ) |
assigns ip and port of rhs to this->ip and this->port
| rhs | the TransportAddress with the defined ip and port |
Definition at line 87 of file TransportAddress.cc.
| bool TransportAddress::operator== | ( | const TransportAddress & | rhs | ) | const |
compares this to a given TransportAddress
| rhs | the TransportAddress this is compared to |
Definition at line 96 of file TransportAddress.cc.
00097 { 00098 assertUnspecified(rhs); 00099 return (this->ip == rhs.ip && this->port == rhs.port); 00100 }
| bool TransportAddress::operator> | ( | const TransportAddress & | rhs | ) | const |
compares this to a given TransportAddress
| rhs | the TransportAddress this is compared to |
Definition at line 117 of file TransportAddress.cc.
00118 { 00119 assertUnspecified(rhs); 00120 return !(this->ip < rhs.ip || this->ip == rhs.ip); 00121 }
| bool TransportAddress::operator>= | ( | const TransportAddress & | rhs | ) | const |
compares this to a given TransportAddress
| rhs | the TransportAddress this is compared to |
Definition at line 131 of file TransportAddress.cc.
00132 { 00133 assertUnspecified(rhs); 00134 return !(this->ip < rhs.ip); 00135 }
| void TransportAddress::setAddress | ( | const IPvXAddress & | ip, | |
| int | port = -1, |
|||
| NatType | natType = UNKNOWN_NAT | |||
| ) |
Sets the ip address, port and NAT type.
| ip | the new IPvXAddress | |
| port | the new port | |
| natType | the type of NAT this node is behind |
Definition at line 138 of file TransportAddress.cc.
Referenced by doUnpacking(), NeighborCache::getNearestNode(), BaseOverlay::handleTransportAddressChangedNotification(), BaseOverlay::initialize(), BaseApp::initialize(), BaseOverlay::join(), NodeHandle::NodeHandle(), I3IdentifierStack::push(), Vast::sendDiscardNode(), and NeighborCache::setLandmarkSet().
00140 { 00141 this->ip = ip; 00142 if (port!=-1) 00143 this->port = port; 00144 if (natType != UNKNOWN_NAT) 00145 this->natType = natType; 00146 }
| void TransportAddress::setPort | ( | int | port | ) |
sets this->port to the given port
| port | the new port |
Definition at line 149 of file TransportAddress.cc.
Referenced by BaseOverlay::bindToPort(), BaseApp::bindToPort(), NeighborCache::getNearestNode(), KBRTestApp::handleTimerEvent(), BaseApp::initialize(), KBRTestApp::initializeApp(), I3::initializeApp(), NodeHandle::NodeHandle(), I3IdentifierStack::push(), and NeighborCache::setLandmarkSet().
| std::ostream& operator<< | ( | std::ostream & | os, | |
| const TransportAddress & | n | |||
| ) | [friend] |
standard output stream for TransportAddress, gives out ip and port
| os | the ostream | |
| n | the TransportAddress |
Definition at line 33 of file TransportAddress.cc.
00034 { 00035 if (n.isUnspecified()) { 00036 os << "<addr unspec>"; 00037 } else { 00038 os << n.ip << ":" << n.port; 00039 } 00040 00041 if (n.getSourceRouteSize() > 0) { 00042 os << "(SR:"; 00043 for (size_t i = 0; i < n.getSourceRouteSize(); i++) { 00044 os << " " << n.getSourceRoute()[i].ip << ":" 00045 << n.getSourceRoute()[i].port; 00046 } 00047 os << ")"; 00048 } 00049 00050 return os; 00051 };
IPvXAddress TransportAddress::ip [protected] |
the ip of this TransportAddress object
Definition at line 80 of file TransportAddress.h.
Referenced by appendSourceRoute(), BootstrapNodeHandle::BootstrapNodeHandle(), BrooseHandle::BrooseHandle(), getAddress(), hash(), I3IPAddress::I3IPAddress(), isUnspecified(), NodeHandle::isUnspecified(), I3IPAddress::length(), NodeHandle::netPack(), NodeHandle::netUnpack(), NodeHandle::NodeHandle(), operator!=(), NodeHandle::operator!=(), BrooseHandle::operator!=(), operator<(), I3IPAddress::operator<(), operator<<(), operator<=(), operator=(), NodeHandle::operator=(), GiaNode::operator=(), BrooseHandle::operator=(), operator==(), NodeHandle::operator==(), I3IPAddress::operator==(), BrooseHandle::operator==(), operator>(), operator>=(), and TransportAddress().
NatType TransportAddress::natType [private] |
the assumed type of a NAT this node is behind (work in progress and currently not used
Definition at line 84 of file TransportAddress.h.
Referenced by appendSourceRoute(), getNatType(), and TransportAddress().
int TransportAddress::port [protected] |
the port of this TransportAddress object
Definition at line 81 of file TransportAddress.h.
Referenced by appendSourceRoute(), BootstrapNodeHandle::BootstrapNodeHandle(), BrooseHandle::BrooseHandle(), getPort(), hash(), I3IPAddress::I3IPAddress(), isUnspecified(), NodeHandle::netPack(), NodeHandle::netUnpack(), NodeHandle::NodeHandle(), operator!=(), NodeHandle::operator!=(), BrooseHandle::operator!=(), I3IPAddress::operator<(), operator<<(), operator=(), NodeHandle::operator=(), GiaNode::operator=(), BrooseHandle::operator=(), operator==(), NodeHandle::operator==(), I3IPAddress::operator==(), BrooseHandle::operator==(), and TransportAddress().
source route for NAT traversal
Definition at line 86 of file TransportAddress.h.
Referenced by appendSourceRoute(), clearSourceRoute(), getSourceRoute(), getSourceRouteSize(), and TransportAddress().
const TransportAddress TransportAddress::UNSPECIFIED_NODE [static] |
TransportAddress without specified ip and port.
Reimplemented in NodeHandle, and GiaNode.
Definition at line 119 of file TransportAddress.h.
Referenced by NiceCluster::clear(), oversim::Nice::ClusterMerge(), oversim::Nice::ClusterSplit(), PastryRoutingTable::failedNode(), PastryNeighborhoodSet::failedNode(), PastryLeafSet::failedNode(), oversim::Nice::findCenter(), PastryRoutingTable::findNextNodeToAsk(), NeighborCache::getNearestNode(), PastryRoutingTable::getRandomNode(), PastryLeafSet::getRandomNode(), oversim::Chord::handleRpcStabilizeResponse(), oversim::Nice::initializeOverlay(), oversim::Chord::initializeOverlay(), BaseApp::internalSendRpcResponse(), oversim::Nice::maintenance(), NiceCluster::NiceCluster(), PastryStateObject::repair(), PastryRoutingTable::repair(), PastryLeafSet::repair(), BaseRpc::sendInternalRpcCall(), and BaseRpc::sendRouteRpcCall().
const std::vector< TransportAddress > TransportAddress::UNSPECIFIED_NODES [static] |
Definition at line 120 of file TransportAddress.h.
1.5.8