It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
user@server:~$ netstat -lp | grep bitcoind
tcp 0 0 localhost:8332 *:* LISTEN 32153/bitcoind
tcp 0 0 *:8333 *:* LISTEN 32153/bitcoind
tcp6 0 0 localhost:8332 [::]:* LISTEN 32153/bitcoind
tcp6 0 0 [::]:8333 [::]:* LISTEN 32153/bitcoind
user@server:~$ netstat -lp | grep bitcoind
tcp 0 0 *:8333 *:* LISTEN 7574/bitcoind
tcp6 0 0 [::]:8332 [::]:* LISTEN 7574/bitcoind
tcp6 0 0 [::]:8333 [::]:* LISTEN 7574/bitcoind
user@server:~$ netstat -lp | grep bitcoind
tcp 0 0 *:8332 *:* LISTEN 3063/bitcoind
tcp 0 0 *:8333 *:* LISTEN 3063/bitcoind
tcp6 0 0 [::]:8332 [::]:* LISTEN 3063/bitcoind
tcp6 0 0 [::]:8333 [::]:* LISTEN 3063/bitcoind
diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp
index c99b74f..ba7f462 100644
--- a/src/bitcoinrpc.cpp
+++ b/src/bitcoinrpc.cpp
@@ -791,8 +791,8 @@ void StartRPCThreads()
acceptor->open(endpoint.protocol());
acceptor->set_option(boost::asio::ip::tcp::acceptor::reuse_address(true));
- // Try making the socket dual IPv6/IPv4 (if listening on the "any" address)
- acceptor->set_option(boost::asio::ip::v6_only(loopback), v6_only_error);
+ // This is an IPv6 only socket
+ acceptor->set_option(boost::asio::ip::v6_only(true), v6_only_error);
acceptor->bind(endpoint);
acceptor->listen(socket_base::max_connections);
@@ -807,8 +807,7 @@ void StartRPCThreads()
}
try {
- // If dual IPv6/IPv4 failed (or we're opening loopback interfaces only), open IPv4 separately
- if (!fListening || loopback || v6_only_error)
+ // This is an IPv4 socket
{
bindAddress = loopback ? asio::ip::address_v4::loopback() : asio::ip::address_v4::any();
endpoint.address(bindAddress);
rpcuser=bitcoinrpc
rpcpassword=randompassword
user@server:~$ netstat -lp | grep bitcoind
tcp 0 0 localhost:8332 *:* LISTEN 32153/bitcoind
tcp 0 0 *:8333 *:* LISTEN 32153/bitcoind
tcp6 0 0 localhost:8332 [::]:* LISTEN 32153/bitcoind
tcp6 0 0 [::]:8333 [::]:* LISTEN 32153/bitcoind
rpcuser=bitcoinrpc
rpcpassword=randompassword
rpcallowip=*
user@server:~$ netstat -lp | grep bitcoind
tcp 0 0 *:8333 *:* LISTEN 6981/bitcoind
tcp6 0 0 [::]:8332 [::]:* LISTEN 6981/bitcoind
tcp6 0 0 [::]:8333 [::]:* LISTEN 6981/bitcoind
rpcallowip=*.*.*.*
rpcallowip=192.168.1.3
rpcport=8332
Bound to [::]:8333
Bound to 0.0.0.0:8333
ThreadRPCServer started