diff options
| author | Gregory Maxwell <[email protected]> | 2013-04-30 12:09:07 -0700 |
|---|---|---|
| committer | Gregory Maxwell <[email protected]> | 2013-04-30 12:09:07 -0700 |
| commit | eef2091fe9ee39ecd8e874c91d3ab0ff023c5356 (patch) | |
| tree | 988b3a9c0f7f48b97709f9584ec5743879135c4d /src | |
| parent | Merge pull request #2583 from laanwj/2013_04_netbase_bitfield (diff) | |
| parent | Don't announce to non-peer CNodes (diff) | |
| download | discoin-eef2091fe9ee39ecd8e874c91d3ab0ff023c5356.tar.xz discoin-eef2091fe9ee39ecd8e874c91d3ab0ff023c5356.zip | |
Merge pull request #2595 from sipa/noannloc
Don't announce to non-peer CNodes
Diffstat (limited to 'src')
| -rw-r--r-- | src/net.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -256,7 +256,7 @@ public: pfilter = NULL; // Be shy and don't send version until we hear - if (!fInbound) + if (hSocket != INVALID_SOCKET && !fInbound) PushVersion(); } |