- F2413EBC07B49F7A4CB96E4AE82BCA531B78E4AFE6B2C93BE4E00A9C89813CFBB62B0F255DDE13EE6E59F883936AFC2640B139E49EA7A766868CDB9EDC2CD3DB
+ 0F41846E6A31C2636E9836BDD08321C25551ED38E711A667A747D967332CB40C32A757A47599F03ED5AD111405941AC898C3FD6C6A0334FE77808DFE0CC1B443
bitcoin/src/net.cpp
(577 . 16)(577 . 20)
67 return false;
68 }
69
70
71
72
73
74
75
76
77
78
79
80 void CNode::CopyStats(CNodeStats &stats)
81 {
82 stats.nServices = nServices;
83 stats.nLastSend = nLastSend;
84 stats.nLastRecv = nLastRecv;
85 stats.nTimeConnected = nTimeConnected;
86 stats.addr = addr;
87 stats.nVersion = nVersion;
88 stats.strSubVer = strSubVer;
89 stats.fInbound = fInbound;
90 stats.nReleaseTime = nReleaseTime;
91 stats.nStartingHeight = nStartingHeight;
92 stats.nMisbehavior = nMisbehavior;
93 }
94
95 void ThreadSocketHandler(void* parg)
96 {