mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-02-11 09:42:17 +01:00
Bugfix: Fix a variety of misspellings
(PARTIAL: Left out anything changing debug.log)
This commit is contained in:
10
src/net.cpp
10
src/net.cpp
@@ -357,7 +357,7 @@ bool GetMyExternalIP(unsigned int& ipRet)
|
||||
{
|
||||
// We should be phasing out our use of sites like these. If we need
|
||||
// replacements, we should ask for volunteers to put this simple
|
||||
// php file on their webserver that prints the client IP:
|
||||
// php file on their web server that prints the client IP:
|
||||
// <?php echo $_SERVER["REMOTE_ADDR"]; ?>
|
||||
if (nHost == 1)
|
||||
{
|
||||
@@ -680,7 +680,7 @@ CNode* ConnectNode(CAddress addrConnect, int64 nTimeout)
|
||||
/// debug print
|
||||
printf("connected %s\n", addrConnect.ToString().c_str());
|
||||
|
||||
// Set to nonblocking
|
||||
// Set to non-blocking
|
||||
#ifdef __WXMSW__
|
||||
u_long nOne = 1;
|
||||
if (ioctlsocket(hSocket, FIONBIO, &nOne) == SOCKET_ERROR)
|
||||
@@ -1704,7 +1704,7 @@ bool BindListenPort(string& strError)
|
||||
#endif
|
||||
|
||||
#ifdef __WXMSW__
|
||||
// Set to nonblocking, incoming connections will also inherit this
|
||||
// Set to non-blocking, incoming connections will also inherit this
|
||||
if (ioctlsocket(hListenSocket, FIONBIO, (u_long*)&nOne) == SOCKET_ERROR)
|
||||
#else
|
||||
if (fcntl(hListenSocket, F_SETFL, O_NONBLOCK) == SOCKET_ERROR)
|
||||
@@ -1751,7 +1751,7 @@ void StartNode(void* parg)
|
||||
pnodeLocalHost = new CNode(INVALID_SOCKET, CAddress("127.0.0.1", 0, false, nLocalServices));
|
||||
|
||||
#ifdef __WXMSW__
|
||||
// Get local host ip
|
||||
// Get local host IP
|
||||
char pszHostName[1000] = "";
|
||||
if (gethostname(pszHostName, sizeof(pszHostName)) != SOCKET_ERROR)
|
||||
{
|
||||
@@ -1765,7 +1765,7 @@ void StartNode(void* parg)
|
||||
}
|
||||
}
|
||||
#else
|
||||
// Get local host ip
|
||||
// Get local host IP
|
||||
struct ifaddrs* myaddrs;
|
||||
if (getifaddrs(&myaddrs) == 0)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user