![]() |
Feathercoin
0.5.0
P2P Digital Currency
|
#include <deque>
#include <boost/array.hpp>
#include <boost/foreach.hpp>
#include <openssl/rand.h>
#include <arpa/inet.h>
#include "mruset.h"
#include "limitedmap.h"
#include "netbase.h"
#include "protocol.h"
#include "addrman.h"
#include "hash.h"
#include "bloom.h"
Go to the source code of this file.
Classes | |
class | CNodeStats |
class | CNetMessage |
class | CNode |
Information about a peer. More... | |
Enumerations | |
enum | { LOCAL_NONE, LOCAL_IF, LOCAL_BIND, LOCAL_UPNP, LOCAL_HTTP, LOCAL_MANUAL, LOCAL_MAX } |
Functions | |
unsigned int | ReceiveFloodSize () |
unsigned int | SendBufferSize () |
void | AddOneShot (std::string strDest) |
bool | RecvLine (SOCKET hSocket, std::string &strLine) |
bool | GetMyExternalIP (CNetAddr &ipRet) |
void | AddressCurrentlyConnected (const CService &addr) |
CNode * | FindNode (const CNetAddr &ip) |
CNode * | FindNode (const CService &ip) |
CNode * | ConnectNode (CAddress addrConnect, const char *strDest=NULL) |
void | MapPort (bool fUseUPnP) |
unsigned short | GetListenPort () |
bool | BindListenPort (const CService &bindAddr, std::string &strError=REF(std::string())) |
void | StartNode (boost::thread_group &threadGroup) |
bool | StopNode () |
void | SocketSendData (CNode *pnode) |
void | SetLimited (enum Network net, bool fLimited=true) |
Make a particular network entirely off-limits (no automatic connects to it) More... | |
bool | IsLimited (enum Network net) |
bool | IsLimited (const CNetAddr &addr) |
bool | AddLocal (const CService &addr, int nScore=LOCAL_NONE) |
bool | AddLocal (const CNetAddr &addr, int nScore=LOCAL_NONE) |
bool | SeenLocal (const CService &addr) |
vote for a local address More... | |
bool | IsLocal (const CService &addr) |
check whether a given address is potentially local More... | |
bool | GetLocal (CService &addr, const CNetAddr *paddrPeer=NULL) |
bool | IsReachable (const CNetAddr &addr) |
check whether a given address is in a network we can probably connect to More... | |
void | SetReachable (enum Network net, bool fFlag=true) |
CAddress | GetLocalAddress (const CNetAddr *paddrPeer=NULL) |
void | RelayTransaction (const CTransaction &tx, const uint256 &hash) |
void | RelayTransaction (const CTransaction &tx, const uint256 &hash, const CDataStream &ss) |
Variables | |
int | nBestHeight |
bool | fDiscover |
uint64 | nLocalServices |
uint64 | nLocalHostNonce |
CAddrMan | addrman |
int | nMaxConnections |
std::vector< CNode * > | vNodes |
CCriticalSection | cs_vNodes |
std::map< CInv, CDataStream > | mapRelay |
std::deque< std::pair< int64, CInv > > | vRelayExpiration |
CCriticalSection | cs_mapRelay |
limitedmap< CInv, int64 > | mapAlreadyAskedFor |
std::vector< std::string > | vAddedNodes |
CCriticalSection | cs_vAddedNodes |
anonymous enum |
bool AddLocal | ( | const CService & | addr, |
int | nScore = LOCAL_NONE |
||
) |
bool AddLocal | ( | const CNetAddr & | addr, |
int | nScore = LOCAL_NONE |
||
) |
void AddOneShot | ( | std::string | strDest | ) |
bool IsLocal | ( | const CService & | addr | ) |
bool IsReachable | ( | const CNetAddr & | addr | ) |
bool RecvLine | ( | SOCKET | hSocket, |
std::string & | strLine | ||
) |
void RelayTransaction | ( | const CTransaction & | tx, |
const uint256 & | hash | ||
) |
void RelayTransaction | ( | const CTransaction & | tx, |
const uint256 & | hash, | ||
const CDataStream & | ss | ||
) |
bool SeenLocal | ( | const CService & | addr | ) |
void SetLimited | ( | enum Network | net, |
bool | fLimited = true |
||
) |
CCriticalSection cs_mapRelay |
CCriticalSection cs_vAddedNodes |
CCriticalSection cs_vNodes |
limitedmap<CInv, int64> mapAlreadyAskedFor |
std::map<CInv, CDataStream> mapRelay |