novacoin.git
12 years agoBump version to 0.5.0.5
Luke Dashjr [Fri, 16 Mar 2012 20:11:11 +0000]
Bump version to 0.5.0.5

12 years agoFix Win32 RPC Crashes.
Matt Corallo [Fri, 16 Mar 2012 02:55:12 +0000]
Fix Win32 RPC Crashes.

12 years agoMerge branch '0.4.x' into 0.5.0.x
Luke Dashjr [Mon, 12 Mar 2012 02:20:31 +0000]
Merge branch '0.4.x' into 0.5.0.x

12 years agoResolves issue #922 - "wallet passphrase timeout of several years doesn't work"
Gregory Maxwell [Sat, 10 Mar 2012 21:05:28 +0000]
Resolves issue #922 - "wallet passphrase timeout of several years doesn't work"

2^31 milliseconds is only about 25 days. Also clamps Sleep() to 10 years,
because it currently sleeps for 0 seconds when the sleep time would cross
2^31 seconds since the epoch. Hopefully boost will be fixed by 2028.

12 years agofix typo src/net.cpp
nomnombtc [Mon, 5 Mar 2012 18:33:24 +0000]
fix typo src/net.cpp

12 years agoMerge branch '0.4.x' into 0.5.0.x
Luke Dashjr [Sat, 3 Mar 2012 18:59:19 +0000]
Merge branch '0.4.x' into 0.5.0.x

12 years agoBugfix: Fix possible buffer overflow (#901)
Luke Dashjr [Sat, 3 Mar 2012 18:51:10 +0000]
Bugfix: Fix possible buffer overflow (#901)

Upstream commit: 21ae37d (partial)

12 years agoBugfix: Check return value of SHGetSpecialFolderPath in MyGetSpecialFolderPath
Luke Dashjr [Sat, 3 Mar 2012 18:44:42 +0000]
Bugfix: Check return value of SHGetSpecialFolderPath in MyGetSpecialFolderPath

Upstream commit: 21ae37d (partial)

12 years agoMerge remote branch 'sipa/nooverwritetx_v0.4.0' into 0.4.x
Luke Dashjr [Sat, 3 Mar 2012 17:59:09 +0000]
Merge remote branch 'sipa/nooverwritetx_v0.4.0' into 0.4.x

12 years agoDo not allow overwriting unspent transactions (BIP 30)
Pieter Wuille [Fri, 17 Feb 2012 16:58:02 +0000]
Do not allow overwriting unspent transactions (BIP 30)

Introduce the following network rule:
 * a block is not valid if it contains a transaction whose hash
   already exists in the block chain, unless all that transaction's
   outputs were already spent before said block.

Warning: this is effectively a network rule change, with potential
risk for forking the block chain. Leaving this unfixed carries the
same risk however, for attackers that can cause a reorganisation
in part of the network.

Thanks to Russell O'Connor and Ben Reeves.

12 years agoDoS fix for mapOrphanTransactions
Gavin Andresen [Wed, 29 Feb 2012 15:14:18 +0000]
DoS fix for mapOrphanTransactions

12 years agoIn UI, handle cases in which the last received block was generated in the future...
Wladimir J. van der Laan [Sat, 25 Feb 2012 18:07:53 +0000]
In UI, handle cases in which the last received block was generated in the future (secs<0)

Fixes #874.

12 years agoDon't show splash screen when -min is specified on the command line.
Chris Moore [Sat, 25 Feb 2012 02:54:18 +0000]
Don't show splash screen when -min is specified on the command line.

12 years agoCheckpoint block 168,000
Gavin Andresen [Thu, 23 Feb 2012 18:33:30 +0000]
Checkpoint block 168,000

12 years agoProcessBlock is sometimes called with pfrom==NULL
Pieter Wuille [Mon, 20 Feb 2012 21:35:08 +0000]
ProcessBlock is sometimes called with pfrom==NULL

12 years agoFix #616: remove base_uint::operator&=(uint64 b)
Pieter Wuille [Sun, 19 Feb 2012 18:12:41 +0000]
Fix #616: remove base_uint::operator&=(uint64 b)

12 years agoFix #626: RecvLine wrong error message
Pieter Wuille [Sun, 19 Feb 2012 18:05:41 +0000]
Fix #626: RecvLine wrong error message

12 years agoOn windows, show message box with help, as there is no stderr (fixes #702)
Wladimir J. van der Laan [Fri, 17 Feb 2012 16:53:41 +0000]
On windows, show message box with help, as there is no stderr (fixes #702)

(partial)

12 years agoOnly fill in label from address book, if no label is filled in yet, fixes #840
Wladimir J. van der Laan [Fri, 17 Feb 2012 17:25:14 +0000]
Only fill in label from address book, if no label is filled in yet, fixes #840

12 years agoFix #650: CKey::SetSecret BIGNUM leak
Pieter Wuille [Sun, 19 Feb 2012 17:44:51 +0000]
Fix #650: CKey::SetSecret BIGNUM leak

12 years agoFree pwalletdbEncryption after encryping wallet
Pieter Wuille [Sat, 18 Feb 2012 14:36:40 +0000]
Free pwalletdbEncryption after encryping wallet

Fixes a memory leak.

12 years agoRestructure IPC URL handling (fixes #851)
Wladimir J. van der Laan [Fri, 17 Feb 2012 14:26:20 +0000]
Restructure IPC URL handling (fixes #851)

12 years agoChange #ifdef GUI to #ifdef QT_GUI, GUI is not defined anymore...
Wladimir J. van der Laan [Fri, 17 Feb 2012 17:00:41 +0000]
Change #ifdef GUI to #ifdef QT_GUI, GUI is not defined anymore...

12 years agoExtra wallet locking fixes
Pieter Wuille [Sat, 11 Feb 2012 17:01:24 +0000]
Extra wallet locking fixes

* Fix sign error in calculation of seconds to sleep
* Do not mix GetTime() (seconds) and Sleep() (milliseconds)
* Do not sleep forever if walletlock() is called
* Do locking within critical section

12 years agoMerge branch '0.4.x' into 0.5.0.x
Luke Dashjr [Fri, 17 Feb 2012 14:39:54 +0000]
Merge branch '0.4.x' into 0.5.0.x

12 years agoFix wallet locking locking
Pieter Wuille [Sat, 11 Feb 2012 15:35:40 +0000]
Fix wallet locking locking

12 years agoMacros for manual critical sections
Pieter Wuille [Sat, 11 Feb 2012 19:02:55 +0000]
Macros for manual critical sections

12 years agoMerge branch '0.4.x' into 0.5.0.x
Luke Dashjr [Fri, 17 Feb 2012 14:15:21 +0000]
Merge branch '0.4.x' into 0.5.0.x

12 years agodon't allow -daemon in bitcoin-qt (changes only #defines)
Wladimir J. van der Laan [Fri, 17 Feb 2012 13:46:06 +0000]
don't allow -daemon in bitcoin-qt (changes only #defines)

12 years agoProperly include $*_LIB_PATH in makefile.unix
Matt Corallo [Wed, 15 Feb 2012 21:05:55 +0000]
Properly include $*_LIB_PATH in makefile.unix

12 years agoSeveral shutdown-related fixes
Pieter Wuille [Wed, 15 Feb 2012 20:17:15 +0000]
Several shutdown-related fixes

* do not let vnThreadsRunning[1] go negative
* do not perform locking operations while vnThreadsRunning[1] is decreased
* check vnThreadsRunning[1] at exit

12 years agoBugfix: do not create CAddress for invalid accepts
Pieter Wuille [Wed, 15 Feb 2012 19:56:29 +0000]
Bugfix: do not create CAddress for invalid accepts

12 years agoFix Minimize to the tray instead of the taskbar
Janne Pulkkinen [Fri, 3 Feb 2012 18:08:50 +0000]
Fix Minimize to the tray instead of the taskbar

12 years agoPrevent window from being shown momentarily when using -min
Wladimir J. van der Laan [Fri, 9 Dec 2011 21:35:57 +0000]
Prevent window from being shown momentarily when using -min
- In a previous patch, show() was added to all the page switcher functions. As the contructor calls showOverviewPage(), this means the window is shown in the constructor.
- This change prevents this by connecting show() to the signal instead.

12 years agoEnable accessible widgets Qt module on win32, so that people with screen readers...
Wladimir J. van der Laan [Fri, 10 Feb 2012 07:28:32 +0000]
Enable accessible widgets Qt module on win32, so that people with screen readers such as NVDA can make sense of it.

12 years agoMerge branch '0.4.x' into 0.5.0.x
Luke Dashjr [Sun, 12 Feb 2012 02:26:11 +0000]
Merge branch '0.4.x' into 0.5.0.x

12 years agoGet ext. IP from UPnP, make sure addrMe IsRoutable() in version.
Matt Corallo [Fri, 10 Feb 2012 03:41:42 +0000]
Get ext. IP from UPnP, make sure addrMe IsRoutable() in version.

This fixes a potential bug where some NATs may replace the node's
interal IP with its external IP in version messages, causing
incorrect checksums when version messages begin being checksummed
on February 14, 2012.

12 years agoFix #822
Pieter Wuille [Sat, 11 Feb 2012 14:25:42 +0000]
Fix #822

12 years agoMerge branch '0.4.x' into 0.5.0.x
Luke Dashjr [Wed, 8 Feb 2012 03:46:07 +0000]
Merge branch '0.4.x' into 0.5.0.x

Conflicts:
src/bitcoinrpc.cpp

12 years agoUpdate copyrights to 2012 for files modified this year
Luke Dashjr [Wed, 8 Feb 2012 03:30:21 +0000]
Update copyrights to 2012 for files modified this year

12 years agoHave bitcoind recommend a secure RPC password. Increase invalid password delay.
Gregory Maxwell [Sun, 5 Feb 2012 07:30:43 +0000]
Have bitcoind recommend a secure RPC password. Increase invalid password delay.

Help users avoid insecure configurations a bit by recommending a
secure RPC password and increasing the incorrect password delay.

This may open up a RPC DOS for users with exposed RPC ports and
short passwords. Since users shouldn't have exposed RPC ports OR
short passwords, the DOS risk is preferable to the compromise
risk.

Also logs the client IP address for incorrect attempts.

12 years agoRestructure credit transaction decomposition (solves issue #689)
Wladimir J. van der Laan [Sun, 5 Feb 2012 10:53:52 +0000]
Restructure credit transaction decomposition (solves issue #689)

When a transaction has multiple outputs that go to the wallet, list these
as multiple transactions in the UI. This is also applied to generated
(coinbase) transactions. Also makes the code shorter and easier
to understand.

12 years agoBugfix: Capitalize kB correctly (upstream: 9d4b05c)
Luke Dashjr [Tue, 7 Feb 2012 23:20:01 +0000]
Bugfix: Capitalize kB correctly (upstream: 9d4b05c)

12 years agoUpdate copyrights to 2012 for files modified this year
Luke Dashjr [Wed, 8 Feb 2012 03:30:21 +0000]
Update copyrights to 2012 for files modified this year

12 years agoHave bitcoind recommend a secure RPC password. Increase invalid password delay.
Gregory Maxwell [Sun, 5 Feb 2012 07:30:43 +0000]
Have bitcoind recommend a secure RPC password. Increase invalid password delay.

Help users avoid insecure configurations a bit by recommending a
secure RPC password and increasing the incorrect password delay.

This may open up a RPC DOS for users with exposed RPC ports and
short passwords. Since users shouldn't have exposed RPC ports OR
short passwords, the DOS risk is preferable to the compromise
risk.

Also logs the client IP address for incorrect attempts.

12 years agoMerge branch '0.4.x' into 0.5.0.x
Luke Dashjr [Fri, 3 Feb 2012 01:17:41 +0000]
Merge branch '0.4.x' into 0.5.0.x

Conflicts:
src/main.cpp

12 years agoOnly store transactions with missing inputs in the orphan pool.
Gavin Andresen [Wed, 18 Jan 2012 18:36:44 +0000]
Only store transactions with missing inputs in the orphan pool.

All previous versions of bitcoin could store some types of
invalid transactions in the orphan-transaction list.

12 years agoFull checking of all loaded keys
Pieter Wuille [Thu, 26 Jan 2012 18:26:34 +0000]
Full checking of all loaded keys

12 years agoRevert to global progress indication (see #753)
Wladimir J. van der Laan [Tue, 17 Jan 2012 08:19:23 +0000]
Revert to global progress indication (see #753)

12 years agoCheck consistency of private keys
Pieter Wuille [Wed, 25 Jan 2012 02:05:16 +0000]
Check consistency of private keys

Reported by onlineproof on IRC: Bitcoin does not verify whether private
keys and public keys correspond, when loading a wallet.

12 years agoAllow -upnp to override setting in wallet (and simplify logic a bit)
Gavin Andresen [Wed, 1 Feb 2012 18:24:15 +0000]
Allow -upnp to override setting in wallet (and simplify logic a bit)

12 years agoFix UPnP by reannouncing every 20 minutes.
Matt Corallo [Tue, 31 Jan 2012 22:36:25 +0000]
Fix UPnP by reannouncing every 20 minutes.

12 years agoTestnet difficulty calculation changes, to take effect Feb 15 2012
Gavin Andresen [Mon, 5 Dec 2011 20:50:22 +0000]
Testnet difficulty calculation changes, to take effect Feb 15 2012

Allow mining of min-difficulty blocks if 20 minutes have gone by without mining a regular-difficulty block.
Normal rules apply every 2016 blocks, though, so there may be a very-slow-to-confirm block at the difficulty-adjustment blocks.

12 years agoAutomatically refocus on new SendCoinsEntrys and scroll to them.
Matt Corallo [Wed, 7 Dec 2011 05:00:04 +0000]
Automatically refocus on new SendCoinsEntrys and scroll to them.

12 years agoSupport makefile.osx building test_bitcoin with dynamic boost
Gavin Andresen [Mon, 23 Jan 2012 20:58:06 +0000]
Support makefile.osx building test_bitcoin with dynamic boost

12 years agoRename src/obj/test to src/obj-test to workaround bug in older GNU Make
Luke Dashjr [Mon, 23 Jan 2012 19:27:08 +0000]
Rename src/obj/test to src/obj-test to workaround bug in older GNU Make

12 years agoBugfix: Support building test_bitcoin with shared-object boost test framework
Luke Dashjr [Thu, 2 Feb 2012 22:27:44 +0000]
Bugfix: Support building test_bitcoin with shared-object boost test framework

Conflicts:

src/makefile.unix

12 years agoMerge branch '0.4.x' into 0.5.0.x
Luke Dashjr [Tue, 24 Jan 2012 03:45:36 +0000]
Merge branch '0.4.x' into 0.5.0.x

Conflicts:
doc/release-process.txt

12 years agoVarious updates to the release process
Luke Dashjr [Wed, 18 Jan 2012 02:50:08 +0000]
Various updates to the release process

12 years agoVarious updates to the release process
Luke Dashjr [Wed, 18 Jan 2012 02:50:08 +0000]
Various updates to the release process

12 years agoUpdate seednodes, pick long-uptime nodes with version >= 0.4.0
Daniel Folkinshteyn [Thu, 19 Jan 2012 06:54:14 +0000]
Update seednodes, pick long-uptime nodes with version >= 0.4.0

12 years agoReplace tabs with four spaces to comply with coding standard in doc/coding.txt
Lars Rasmusson [Sat, 14 Jan 2012 11:14:36 +0000]
Replace tabs with four spaces to comply with coding standard in doc/coding.txt

12 years agoReplace tabs with four spaces to comply with coding standard in doc/coding.txt
Lars Rasmusson [Sat, 14 Jan 2012 11:14:36 +0000]
Replace tabs with four spaces to comply with coding standard in doc/coding.txt

12 years agoCode tidyups, fixing various warnings.
Luke Dashjr [Tue, 17 Jan 2012 03:16:48 +0000]
Code tidyups, fixing various warnings.

Partial cherry pick of:

Compile with extra warnings turned on. And more makefile/code tidying up.

This turns on most gcc warnings, and removes some unused variables and other code that triggers warnings.
Exceptions are:
 -Wno-sign-compare : triggered by lots of comparisons of signed integer to foo.size(), which is unsigned.
 -Wno-char-subscripts : triggered by the convert-to-hex functions (I may fix this in a future commit).

Conflicts:

src/makefile.osx
src/makefile.unix
src/netbase.cpp

12 years agoMerge branch '0.4.x' into 0.5.0.x
Luke Dashjr [Tue, 17 Jan 2012 03:27:59 +0000]
Merge branch '0.4.x' into 0.5.0.x

12 years ago*Clear all has a tooltip now *About dialog updated
Janne Pulkkinen [Sat, 14 Jan 2012 19:31:49 +0000]
*Clear all has a tooltip now *About dialog updated

12 years agoCode tidyups, fixing various warnings.
Luke Dashjr [Tue, 17 Jan 2012 03:17:48 +0000]
Code tidyups, fixing various warnings.

Partial cherry pick of:

Compile with extra warnings turned on. And more makefile/code tidying up.

This turns on most gcc warnings, and removes some unused variables and other code that triggers warnings.
Exceptions are:
 -Wno-sign-compare : triggered by lots of comparisons of signed integer to foo.size(), which is unsigned.
 -Wno-char-subscripts : triggered by the convert-to-hex functions (I may fix this in a future commit).

Conflicts:

src/makefile.osx
src/makefile.unix
src/netbase.cpp
src/rpc.cpp

12 years agoRemove unused definition
Pieter Wuille [Mon, 9 Jan 2012 22:39:26 +0000]
Remove unused definition

12 years agoBump version to 0.5.0.4
Luke Dashjr [Tue, 10 Jan 2012 20:54:38 +0000]
Bump version to 0.5.0.4

12 years agoMerge branch '0.4.x' into 0.5.0.x
Luke Dashjr [Tue, 10 Jan 2012 20:54:25 +0000]
Merge branch '0.4.x' into 0.5.0.x

Conflicts:
contrib/Bitcoin.app/Contents/Info.plist
doc/README
doc/README_windows.txt
share/setup.nsi
src/serialize.h

12 years agoBump version to 0.4.4
Luke Dashjr [Tue, 10 Jan 2012 20:50:37 +0000]
Bump version to 0.4.4

12 years agoAdd "About Qt" menu option to show built-in Qt About dialog
Wladimir J. van der Laan [Tue, 13 Dec 2011 16:30:13 +0000]
Add "About Qt" menu option to show built-in Qt About dialog

- Most Qt programs do this, and it can be useful to find out what version of Qt was built against.

12 years agomake transaction description read-only (UI fix)
Wladimir J. van der Laan [Fri, 6 Jan 2012 05:55:48 +0000]
make transaction description read-only (UI fix)

12 years agoRemove mentions on anonymity in debian folder.
Matt Corallo [Sat, 7 Jan 2012 18:35:25 +0000]
Remove mentions on anonymity in debian folder.

These should never have been there, bitcoin isnt anonymous without
a ton of work that virtually no users will ever be willing and
capable of doing.

12 years agoMerge branch '0.4.x' into 0.5.0.x
Luke Dashjr [Thu, 5 Jan 2012 23:17:58 +0000]
Merge branch '0.4.x' into 0.5.0.x

12 years agoFix horrific performance found by gmaxwell.
Matt Corallo [Tue, 3 Jan 2012 08:03:07 +0000]
Fix horrific performance found by gmaxwell.

12 years agoFix transaction type in UI: not all tx'es with "from"/"to" field are necessarily...
Wladimir J. van der Laan [Wed, 28 Dec 2011 10:14:05 +0000]
Fix transaction type in UI: not all tx'es with "from"/"to" field are necessarily IP tx'es

- Also, prepare for OP_EVAL by calling all transactions without bitcoin address "SendToOther"/"RecvFromOther",
 (IP tx'es are so rare they can be put together with funky EV_EVAL scripts)

12 years agoFix typo (#734)
Luke Dashjr [Tue, 3 Jan 2012 17:21:04 +0000]
Fix typo (#734)

Conflicts:

src/qt/locale/bitcoin_hu.ts
src/qt/locale/bitcoin_it.ts
src/qt/locale/bitcoin_pt_BR.ts
src/qt/locale/bitcoin_uk.ts
src/qt/locale/bitcoin_zh_CN.ts

12 years agoMerge branch '0.4.x' into 0.5.0.x
Luke Dashjr [Tue, 3 Jan 2012 17:19:48 +0000]
Merge branch '0.4.x' into 0.5.0.x

Conflicts:
src/util.cpp

12 years agoI broke -testnet with my TOR option-parsing fixes.
Gavin Andresen [Tue, 3 Jan 2012 16:17:04 +0000]
I broke -testnet with my TOR option-parsing fixes.

12 years agoFix issue #659, and cleanup wallet/command-line argument handling a bit
Gavin Andresen [Tue, 3 Jan 2012 15:14:22 +0000]
Fix issue #659, and cleanup wallet/command-line argument handling a bit

Conflicts:
src/init.cpp
src/util.cpp

12 years agoFix some address-handling deadlocks
Pieter Wuille [Tue, 3 Jan 2012 00:28:15 +0000]
Fix some address-handling deadlocks

Made three critical blocks for cs_mapAddresses smaller, and moved
writing to the database out of them. This should also improve the
concurrency of the code.

12 years agoBe more conservative: check all transactions in blocks after last checkpoint.
Luke Dashjr [Sun, 25 Dec 2011 14:26:12 +0000]
Be more conservative: check all transactions in blocks after last checkpoint.

12 years agoFix #722.
Matt Corallo [Fri, 23 Dec 2011 10:24:46 +0000]
Fix #722.

12 years agoMerge branch '0.4.x' into 0.5.0.x
Luke Dashjr [Fri, 23 Dec 2011 15:08:53 +0000]
Merge branch '0.4.x' into 0.5.0.x

12 years agoImplement an mlock()'d string class for storing passphrases
Dylan Noblesmith [Sat, 26 Nov 2011 06:02:04 +0000]
Implement an mlock()'d string class for storing passphrases

SecureString is identical to std::string except with secure_allocator
substituting for std::allocator. This makes casting between them
impossible, so converting between the two at API boundaries requires
calling ::c_str() for now.

12 years agoBugfix: fForRelay should be false when deciding required fee to include in blocks
Luke Dashjr [Wed, 14 Dec 2011 06:03:55 +0000]
Bugfix: fForRelay should be false when deciding required fee to include in blocks

During the rushed transition from 0.01 BTC to 0.0005 BTC fees, we took the
approach of dropping the relay and block-inclusion fee to 0.0005 BTC
immediately, and only delayed adjusting the sending fee for the next release.
Afterward, the relay fee was lowered to 0.0001 BTC to avoid having the same
problem in the future. However, the block inclusion code was left setting
fForRelay to true! This fixes that, so the lower 0.0001 BTC allowance is (as
intended) only permitted for real relaying.

12 years agoMerge branch '0.4.x' into 0.5.0.x
Luke Dashjr [Mon, 19 Dec 2011 21:05:15 +0000]
Merge branch '0.4.x' into 0.5.0.x

12 years agoAdd my DNS seed domain
Luke Dashjr [Fri, 16 Dec 2011 23:34:47 +0000]
Add my DNS seed domain

12 years agoAdd sipa's new dnsseed.
Matt Corallo [Fri, 16 Dec 2011 16:30:36 +0000]
Add sipa's new dnsseed.

12 years agoUpdate debian changelog to 0.5.0.3.
Luke Dashjr [Fri, 16 Dec 2011 22:47:50 +0000]
Update debian changelog to 0.5.0.3.

12 years agoBump version to 0.5.0.3
Luke Dashjr [Fri, 16 Dec 2011 00:34:37 +0000]
Bump version to 0.5.0.3

12 years agoBump version to 0.5.0.2
Luke Dashjr [Fri, 16 Dec 2011 00:32:15 +0000]
Bump version to 0.5.0.2

12 years agoBump version to 0.4.3
Luke Dashjr [Fri, 16 Dec 2011 00:25:29 +0000]
Bump version to 0.4.3

12 years agoFix status bar not displaying Alerts.
Matt Corallo [Tue, 13 Dec 2011 19:00:21 +0000]
Fix status bar not displaying Alerts.

12 years agoEnable wordwrap for long message in passphrase dialog
Wladimir J. van der Laan [Tue, 13 Dec 2011 15:28:56 +0000]
Enable wordwrap for long message in passphrase dialog
- Remove explicit resizing from constructor to prevent potential hang

12 years agoRe-enable RPCSSL in gitian builds.
Matt Corallo [Wed, 7 Dec 2011 15:26:55 +0000]
Re-enable RPCSSL in gitian builds.

12 years agoMerge branch '0.4.x' into 0.5.x
Luke Dashjr [Mon, 12 Dec 2011 19:34:47 +0000]
Merge branch '0.4.x' into 0.5.x

12 years agoMerge branch 'restore_old_miniupnp_compat' into 0.4.x
Luke Dashjr [Mon, 12 Dec 2011 19:33:47 +0000]
Merge branch 'restore_old_miniupnp_compat' into 0.4.x

12 years agoRestore compatibility with miniupnpc 1.5 (without breaking miniupnp 1.6)
Luke Dashjr [Sat, 10 Dec 2011 16:52:50 +0000]
Restore compatibility with miniupnpc 1.5 (without breaking miniupnp 1.6)