diff options
author | Peter Powell <petpow@saberuk.com> | 2019-12-11 12:31:21 +0000 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2019-12-12 14:37:38 +0000 |
commit | ce7979bd7d6278bc1b67cf46a73a3d23e02a6ae5 (patch) | |
tree | b0e8ac9caac91b330e65981f6be4df7642eba916 /src/inspircd.cpp | |
parent | a1c127aef6e1833cb480a8f37f75029c46256661 (diff) |
Extract port binding code to a function and improve output.
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r-- | src/inspircd.cpp | 42 |
1 files changed, 26 insertions, 16 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp index 384f783aa..2035960bd 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -358,6 +358,31 @@ namespace signal(SIGTERM, InspIRCd::SetSignal); } + void TryBindPorts() + { + FailedPortList pl; + ServerInstance->BindPorts(pl); + + if (!pl.empty()) + { + std::cout << con_red << "Warning!" << con_reset << " Some of your listener" << (pl.size() == 1 ? "s" : "") << " failed to bind:" << std::endl + << std::endl; + + for (FailedPortList::const_iterator iter = pl.begin(); iter != pl.end(); ++iter) + { + const FailedPort& fp = *iter; + std::cout << " " << con_bright << fp.sa.str() << con_reset << ": " << strerror(fp.error) << '.' << std::endl + << " " << "Created from <bind> tag at " << fp.tag->getTagLocation() << std::endl + << std::endl; + } + + std::cout << con_bright << "Hints:" << con_reset << std::endl + << "- For TCP/IP listeners try using a public IP address in <bind:address> instead" << std::endl + << " of * of leaving it blank." << std::endl + << "- For UNIX socket listeners try enabling <bind:rewrite> to replace old sockets." << std::endl; + } + } + // Required for returning the proper value of EXIT_SUCCESS for the parent process. void VoidSignalHandler(int) { @@ -529,9 +554,6 @@ InspIRCd::InspIRCd(int argc, char** argv) // This is needed as all new XLines are marked pending until ApplyLines() is called this->XLines->ApplyLines(); - FailedPortList pl; - size_t bounditems = BindPorts(pl); - std::cout << std::endl; this->Modules->LoadAll(); @@ -539,19 +561,7 @@ InspIRCd::InspIRCd(int argc, char** argv) // Build ISupport as ModuleManager::LoadAll() does not do it this->ISupport.Build(); - if (!pl.empty()) - { - std::cout << std::endl << "WARNING: Not all your client ports could be bound -- " << std::endl << "starting anyway with " << bounditems - << " of " << (bounditems + pl.size()) << " client ports bound." << std::endl << std::endl; - std::cout << "The following port(s) failed to bind:" << std::endl << std::endl; - int j = 1; - for (FailedPortList::iterator i = pl.begin(); i != pl.end(); i++, j++) - { - std::cout << j << ".\tAddress: " << i->first.str() << " \tReason: " << strerror(i->second) << std::endl; - } - - std::cout << std::endl << "Hint: Try using a public IP instead of blank or *" << std::endl; - } + TryBindPorts(); std::cout << "InspIRCd is now running as '" << Config->ServerName << "'[" << Config->GetSID() << "] with " << SocketEngine::GetMaxFds() << " max open sockets" << std::endl; |