mirror of
https://github.com/GOSTSec/poolserver
synced 2025-01-28 07:24:16 +00:00
Tab2Space Round #2
This commit is contained in:
parent
a31dee09e0
commit
aec399570b
@ -12,26 +12,26 @@ namespace Stratum
|
|||||||
{
|
{
|
||||||
bool Client::Start()
|
bool Client::Start()
|
||||||
{
|
{
|
||||||
try {
|
try {
|
||||||
// Get IP
|
// Get IP
|
||||||
tcp::endpoint remote_ep = _socket.remote_endpoint();
|
tcp::endpoint remote_ep = _socket.remote_endpoint();
|
||||||
address remote_ad = remote_ep.address();
|
address remote_ad = remote_ep.address();
|
||||||
_ip = remote_ad.to_v4().to_ulong();
|
_ip = remote_ad.to_v4().to_ulong();
|
||||||
|
|
||||||
if (_server->IsBanned(_ip)) {
|
if (_server->IsBanned(_ip)) {
|
||||||
sLog.Warn(LOG_STRATUM, "Blocked banned client from: %s", remote_ad.to_v4().to_string().c_str());
|
sLog.Warn(LOG_STRATUM, "Blocked banned client from: %s", remote_ad.to_v4().to_string().c_str());
|
||||||
Disconnect();
|
Disconnect();
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Start reading socket
|
// Start reading socket
|
||||||
StartRead();
|
StartRead();
|
||||||
} catch (std::exception& e) {
|
} catch (std::exception& e) {
|
||||||
sLog.Error(LOG_SERVER, "Exception caught while accepting client: %s", e.what());
|
sLog.Error(LOG_SERVER, "Exception caught while accepting client: %s", e.what());
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void Client::SendJob(bool clean)
|
void Client::SendJob(bool clean)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user