比特币(Bitcoin) RPC Network API中disconnectnode的用法及代码示例。
用法:
disconnectnode ( "address" nodeid )
立即与指定的对等节点断开连接。
可以提供‘address’和‘nodeid’中的一个严格标识该节点。
要通过nodeid断开连接,请将‘address’设置为空字符串,或者仅使用命名的‘nodeid’参数进行调用。
参数1 - address
类型:字符串,可选,默认=后退到nodeid
节点的IP地址/端口
参数2 - nodeid
类型:数字,可选,默认=后备地址
节点ID(有关节点ID,请参见getpeerinfo)
示例
bitcoin-cli disconnectnode "192.168.0.6:8333"
bitcoin-cli disconnectnode "" 1
curl --user myusername --data-binary '{"jsonrpc": "1.0", "id":"curltest", "method": "disconnectnode", "params": ["192.168.0.6:8333"] }' -H 'content-type: text/plain;' http://127.0.0.1:8332/
curl --user myusername --data-binary '{"jsonrpc": "1.0", "id":"curltest", "method": "disconnectnode", "params": ["", 1] }' -H 'content-type: text/plain;' http://127.0.0.1:8332/
相关用法
- Bitcoin addnode用法及代码示例
- Bitcoin clearbanned用法及代码示例
- Bitcoin getaddednodeinfo用法及代码示例
- Bitcoin getconnectioncount用法及代码示例
- Bitcoin getnettotals用法及代码示例
- Bitcoin getnetworkinfo用法及代码示例
- Bitcoin getnodeaddresses用法及代码示例
- Bitcoin getpeerinfo用法及代码示例
- Bitcoin listbanned用法及代码示例
- Bitcoin ping用法及代码示例
- Bitcoin setban用法及代码示例
注:本文由纯净天空筛选整理自bitcoin.org大神的英文原创作品 Bitcoin disconnectnode。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。