Stochastical (IP) address manager.
More...
#include <addrman.h>
|
| IMPLEMENT_SERIALIZE (({{LOCK(cs);unsigned char nVersion=0;READWRITE(nVersion);READWRITE(nKey);READWRITE(nNew);READWRITE(nTried);CAddrMan *am=const_cast< CAddrMan * >(this);if(fWrite){int nUBuckets=ADDRMAN_NEW_BUCKET_COUNT;READWRITE(nUBuckets);std::map< int, int > mapUnkIds;int nIds=0;for(std::map< int, CAddrInfo >::iterator it=am->mapInfo.begin();it!=am->mapInfo.end();it++){if(nIds==nNew) break;mapUnkIds[(*it).first]=nIds;CAddrInfo &info=(*it).second;if(info.nRefCount){READWRITE(info);nIds++;}}nIds=0;for(std::map< int, CAddrInfo >::iterator it=am->mapInfo.begin();it!=am->mapInfo.end();it++){if(nIds==nTried) break;CAddrInfo &info=(*it).second;if(info.fInTried){READWRITE(info);nIds++;}}for(std::vector< std::set< int > >::iterator it=am->vvNew.begin();it!=am->vvNew.end();it++){const std::set< int > &vNew=(*it);int nSize=vNew.size();READWRITE(nSize);for(std::set< int >::iterator it2=vNew.begin();it2!=vNew.end();it2++){int nIndex=mapUnkIds[*it2];READWRITE(nIndex);}}}else{int nUBuckets=0;READWRITE(nUBuckets);am->nIdCount=0;am->mapInfo.clear();am->mapAddr.clear();am->vRandom.clear();am->vvTried=std::vector< std::vector< int > >(ADDRMAN_TRIED_BUCKET_COUNT, std::vector< int >(0));am->vvNew=std::vector< std::set< int > >(ADDRMAN_NEW_BUCKET_COUNT, std::set< int >());for(int n=0;n< am->nNew;n++){CAddrInfo &info=am->mapInfo[n];READWRITE(info);am->mapAddr[info]=n;info.nRandomPos=vRandom.size();am->vRandom.push_back(n);if(nUBuckets!=ADDRMAN_NEW_BUCKET_COUNT){am->vvNew[info.GetNewBucket(am->nKey)].insert(n);info.nRefCount++;}}am->nIdCount=am->nNew;int nLost=0;for(int n=0;n< am->nTried;n++){CAddrInfo info;READWRITE(info);std::vector< int > &vTried=am->vvTried[info.GetTriedBucket(am->nKey)];if(vTried.size()< ADDRMAN_TRIED_BUCKET_SIZE){info.nRandomPos=vRandom.size();info.fInTried=true;am->vRandom.push_back(am->nIdCount);am->mapInfo[am->nIdCount]=info;am->mapAddr[info]=am->nIdCount;vTried.push_back(am->nIdCount);am->nIdCount++;}else{nLost++;}}am->nTried-=nLost;for(int b=0;b< nUBuckets;b++){std::set< int > &vNew=am->vvNew[b];int nSize=0;READWRITE(nSize);for(int n=0;n< nSize;n++){int nIndex=0;READWRITE(nIndex);CAddrInfo &info=am->mapInfo[nIndex];if(nUBuckets==ADDRMAN_NEW_BUCKET_COUNT &&info.nRefCount< ADDRMAN_NEW_BUCKETS_PER_ADDRESS){info.nRefCount++;vNew.insert(nIndex);}}}}}});) CAddrMan() |
|
int | size () |
|
void | Check () |
|
bool | Add (const CAddress &addr, const CNetAddr &source, int64_t nTimePenalty=0) |
|
bool | Add (const std::vector< CAddress > &vAddr, const CNetAddr &source, int64_t nTimePenalty=0) |
|
void | Good (const CService &addr, int64_t nTime=GetAdjustedTime()) |
|
void | Attempt (const CService &addr, int64_t nTime=GetAdjustedTime()) |
|
CAddress | Select (int nUnkBias=50) |
|
std::vector< CAddress > | GetAddr () |
|
void | Connected (const CService &addr, int64_t nTime=GetAdjustedTime()) |
|
|
CAddrInfo * | Find (const CNetAddr &addr, int *pnId=NULL) |
|
CAddrInfo * | Create (const CAddress &addr, const CNetAddr &addrSource, int *pnId=NULL) |
|
void | SwapRandom (unsigned int nRandomPos1, unsigned int nRandomPos2) |
|
int | SelectTried (int nKBucket) |
|
int | ShrinkNew (int nUBucket) |
|
void | MakeTried (CAddrInfo &info, int nId, int nOrigin) |
|
void | Good_ (const CService &addr, int64_t nTime) |
|
bool | Add_ (const CAddress &addr, const CNetAddr &source, int64_t nTimePenalty) |
|
void | Attempt_ (const CService &addr, int64_t nTime) |
|
CAddress | Select_ (int nUnkBias) |
|
void | GetAddr_ (std::vector< CAddress > &vAddr) |
|
void | Connected_ (const CService &addr, int64_t nTime) |
|
Stochastical (IP) address manager.
Definition at line 167 of file addrman.h.
bool CAddrMan::Add |
( |
const CAddress & |
addr, |
|
|
const CNetAddr & |
source, |
|
|
int64_t |
nTimePenalty = 0 |
|
) |
| |
|
inline |
bool CAddrMan::Add |
( |
const std::vector< CAddress > & |
vAddr, |
|
|
const CNetAddr & |
source, |
|
|
int64_t |
nTimePenalty = 0 |
|
) |
| |
|
inline |
bool CAddrMan::Add_ |
( |
const CAddress & |
addr, |
|
|
const CNetAddr & |
source, |
|
|
int64_t |
nTimePenalty |
|
) |
| |
|
protected |
void CAddrMan::Attempt_ |
( |
const CService & |
addr, |
|
|
int64_t |
nTime |
|
) |
| |
|
protected |
void CAddrMan::Connected_ |
( |
const CService & |
addr, |
|
|
int64_t |
nTime |
|
) |
| |
|
protected |
std::vector<CAddress> CAddrMan::GetAddr |
( |
| ) |
|
|
inline |
void CAddrMan::GetAddr_ |
( |
std::vector< CAddress > & |
vAddr | ) |
|
|
protected |
void CAddrMan::Good_ |
( |
const CService & |
addr, |
|
|
int64_t |
nTime |
|
) |
| |
|
protected |
void CAddrMan::MakeTried |
( |
CAddrInfo & |
info, |
|
|
int |
nId, |
|
|
int |
nOrigin |
|
) |
| |
|
protected |
CAddress CAddrMan::Select |
( |
int |
nUnkBias = 50 | ) |
|
|
inline |
CAddress CAddrMan::Select_ |
( |
int |
nUnkBias | ) |
|
|
protected |
int CAddrMan::SelectTried |
( |
int |
nKBucket | ) |
|
|
protected |
int CAddrMan::ShrinkNew |
( |
int |
nUBucket | ) |
|
|
protected |
void CAddrMan::SwapRandom |
( |
unsigned int |
nRandomPos1, |
|
|
unsigned int |
nRandomPos2 |
|
) |
| |
|
protected |
std::map<CNetAddr, int> CAddrMan::mapAddr |
|
private |
std::vector<unsigned char> CAddrMan::nKey |
|
private |
std::vector<int> CAddrMan::vRandom |
|
private |
std::vector<std::set<int> > CAddrMan::vvNew |
|
private |
std::vector<std::vector<int> > CAddrMan::vvTried |
|
private |
The documentation for this class was generated from the following files: