mirror of
https://github.com/inspircd/inspircd.git
synced 2025-04-03 23:00:05 -04:00
When rehashing and adding new ports, error back to the user if the ports fail to bind
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5730 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
parent
0f620f8056
commit
f09dc35b5b
@ -771,10 +771,21 @@ void ServerConfig::Read(bool bail, userrec* user)
|
|||||||
*/
|
*/
|
||||||
if (!bail)
|
if (!bail)
|
||||||
{
|
{
|
||||||
int found_ports;
|
int found_ports = 0;
|
||||||
FailedPortList pl;
|
FailedPortList pl;
|
||||||
ServerInstance->stats->BoundPortCount = ServerInstance->BindPorts(false, found_ports, pl);
|
ServerInstance->stats->BoundPortCount = ServerInstance->BindPorts(false, found_ports, pl);
|
||||||
|
|
||||||
|
if (pl.size())
|
||||||
|
{
|
||||||
|
user->WriteServ("NOTICE %s :*** Not all your client ports could be bound.", user->nick);
|
||||||
|
user->WriteServ("NOTICE %s :*** The following port%s failed to bind:", user->nick, found_ports - ServerInstance->stats->BoundPortCount != 1 ? "s" : "");
|
||||||
|
int j = 1;
|
||||||
|
for (FailedPortList::iterator i = pl.begin(); i != pl.end(); i++, j++)
|
||||||
|
{
|
||||||
|
user->WriteServ("NOTICE %s :*** %d. IP: %s Port: %lu", user->nick, j, i->first.empty() ? "<all>" : i->first.c_str(), (unsigned long)i->second);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (!removed_modules.empty())
|
if (!removed_modules.empty())
|
||||||
for (std::vector<std::string>::iterator removing = removed_modules.begin(); removing != removed_modules.end(); removing++)
|
for (std::vector<std::string>::iterator removing = removed_modules.begin(); removing != removed_modules.end(); removing++)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user