diff options
| author | Wladimir J. van der Laan <[email protected]> | 2011-08-22 14:43:37 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2011-08-22 14:43:37 +0200 |
| commit | adce862c2795142a5f56933584abffdbe3599472 (patch) | |
| tree | d181162faf9da3ed5c480983aab3a363784e7589 /src/main.cpp | |
| parent | update README for issue #15 (diff) | |
| parent | Compile with DEBUG_LOCKORDER to detect inconsistent lock orderings that can c... (diff) | |
| download | discoin-adce862c2795142a5f56933584abffdbe3599472.tar.xz discoin-adce862c2795142a5f56933584abffdbe3599472.zip | |
Merge branch 'master' of https://github.com/bitcoin/bitcoin
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/src/main.cpp b/src/main.cpp index 3647f90fe..4d668b6ff 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1385,47 +1385,6 @@ bool static ProcessBlock(CNode* pfrom, CBlock* pblock) -template<typename Stream> -bool static ScanMessageStart(Stream& s) -{ - // Scan ahead to the next pchMessageStart, which should normally be immediately - // at the file pointer. Leaves file pointer at end of pchMessageStart. - s.clear(0); - short prevmask = s.exceptions(0); - const char* p = BEGIN(pchMessageStart); - try - { - loop - { - char c; - s.read(&c, 1); - if (s.fail()) - { - s.clear(0); - s.exceptions(prevmask); - return false; - } - if (*p != c) - p = BEGIN(pchMessageStart); - if (*p == c) - { - if (++p == END(pchMessageStart)) - { - s.clear(0); - s.exceptions(prevmask); - return true; - } - } - } - } - catch (...) - { - s.clear(0); - s.exceptions(prevmask); - return false; - } -} - bool CheckDiskSpace(uint64 nAdditionalBytes) { uint64 nFreeBytesAvailable = filesystem::space(GetDataDir()).available; |