diff options
| author | Jeff Garzik <[email protected]> | 2012-06-28 23:18:38 -0400 |
|---|---|---|
| committer | Jeff Garzik <[email protected]> | 2012-06-28 23:18:38 -0400 |
| commit | 70ab73a0087cbb0d6b26c9ad58146ae542b1b9be (patch) | |
| tree | 4b65de10c0606f765d4c1b99bfcb3a2825f7dc0c /src/rpcnet.cpp | |
| parent | Merge branch 'patch-5' of https://github.com/xanatos/bitcoin (diff) | |
| download | discoin-70ab73a0087cbb0d6b26c9ad58146ae542b1b9be.tar.xz discoin-70ab73a0087cbb0d6b26c9ad58146ae542b1b9be.zip | |
Create new rpcnet module, and move 'getconnectioncount' RPC to it
Diffstat (limited to 'src/rpcnet.cpp')
| -rw-r--r-- | src/rpcnet.cpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/rpcnet.cpp b/src/rpcnet.cpp new file mode 100644 index 000000000..1c27d0ef8 --- /dev/null +++ b/src/rpcnet.cpp @@ -0,0 +1,21 @@ +// Copyright (c) 2009-2012 Bitcoin Developers +// Distributed under the MIT/X11 software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + +#include "net.h" +#include "bitcoinrpc.h" + +using namespace json_spirit; +using namespace std; + +Value getconnectioncount(const Array& params, bool fHelp) +{ + if (fHelp || params.size() != 0) + throw runtime_error( + "getconnectioncount\n" + "Returns the number of connections to other nodes."); + + return (int)vNodes.size(); +} + + |