@ -469,11 +469,10 @@ CNode* ConnectNode(CAddress addrConnect, const char *pszDest)
@@ -469,11 +469,10 @@ CNode* ConnectNode(CAddress addrConnect, const char *pszDest)
}
}
/// debug print
LogPrint ( " net " , " trying connection %s lastseen=%.1fhrs \n " ,
pszDest ? pszDest : addrConnect . ToString ( ) ,
pszDest ? 0 : ( double ) ( GetAdjustedTime ( ) - addrConnect . nTime ) / 3600.0 ) ;
pszDest ? 0. 0 : ( double ) ( GetAdjustedTime ( ) - addrConnect . nTime ) / 3600.0 ) ;
// Connect
SOCKET hSocket ;
@ -505,10 +504,8 @@ CNode* ConnectNode(CAddress addrConnect, const char *pszDest)
@@ -505,10 +504,8 @@ CNode* ConnectNode(CAddress addrConnect, const char *pszDest)
pnode - > nTimeConnected = GetTime ( ) ;
return pnode ;
}
else
{
return NULL ;
}
return NULL ;
}
void CNode : : CloseSocketDisconnect ( )
@ -535,7 +532,6 @@ void CNode::Cleanup()
@@ -535,7 +532,6 @@ void CNode::Cleanup()
{
}
void CNode : : PushVersion ( )
{
int nBestHeight = g_signals . GetHeight ( ) . get_value_or ( 0 ) ;
@ -1425,21 +1421,22 @@ void ThreadOpenAddedConnections()
@@ -1425,21 +1421,22 @@ void ThreadOpenAddedConnections()
}
// if successful, this moves the passed grant to the constructed node
bool OpenNetworkConnection ( const CAddress & addrConnect , CSemaphoreGrant * grantOutbound , const char * str Dest, bool fOneShot )
bool OpenNetworkConnection ( const CAddress & addrConnect , CSemaphoreGrant * grantOutbound , const char * psz Dest, bool fOneShot )
{
//
// Initiate outbound network connection
//
boost : : this_thread : : interruption_point ( ) ;
if ( ! strDest )
if ( ! pszDest ) {
if ( IsLocal ( addrConnect ) | |
FindNode ( ( CNetAddr ) addrConnect ) | | CNode : : IsBanned ( addrConnect ) | |
FindNode ( addrConnect . ToStringIPPort ( ) . c_str ( ) ) )
return false ;
if ( strDest & & FindNode ( strDest ) )
}
if ( pszDest & & FindNode ( pszDest ) )
return false ;
CNode * pnode = ConnectNode ( addrConnect , str Dest) ;
CNode * pnode = ConnectNode ( addrConnect , psz Dest) ;
boost : : this_thread : : interruption_point ( ) ;
if ( ! pnode )
@ -1575,7 +1572,7 @@ bool BindListenPort(const CService &addrBind, string& strError)
@@ -1575,7 +1572,7 @@ bool BindListenPort(const CService &addrBind, string& strError)
socklen_t len = sizeof ( sockaddr ) ;
if ( ! addrBind . GetSockAddr ( ( struct sockaddr * ) & sockaddr , & len ) )
{
strError = strprintf ( " Error: b ind address family for %s not supported " , addrBind . ToString ( ) ) ;
strError = strprintf ( " Error: B ind address family for %s not supported " , addrBind . ToString ( ) ) ;
LogPrintf ( " %s \n " , strError ) ;
return false ;
}
@ -1769,9 +1766,8 @@ bool StopNode()
@@ -1769,9 +1766,8 @@ bool StopNode()
class CNetCleanup
{
public :
CNetCleanup ( )
{
}
CNetCleanup ( ) { }
~ CNetCleanup ( )
{
// Close sockets