diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-11-11 18:45:50 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-11-11 18:45:50 +0000 |
commit | 1a0357cc2caa18cb2b1ee115053c8f239aa5576b (patch) | |
tree | 0ded8870a0ff0d8b6d7ffdecc49bad528bab280d /src/configreader.cpp | |
parent | 0e6f0d340ba68c8969608c70f57947577f028201 (diff) |
Add a counter for errored files
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8570 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/configreader.cpp')
-rw-r--r-- | src/configreader.cpp | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/configreader.cpp b/src/configreader.cpp index 2138d0638..e9301d70a 100644 --- a/src/configreader.cpp +++ b/src/configreader.cpp @@ -1243,14 +1243,24 @@ void ServerConfig::Read(bool bail, User* user, int pass) bool ServerConfig::Downloading() { - ServerInstance->Log(DEBUG, "ServerConfig::Downloading() TotalDownloaded %u of %u", TotalDownloaded, IncludedFiles.size()); + if (isatty(0) && isatty(1) && isatty(2)) + { + printf("."); + fflush(stdout); + } + /* Returns true if there are still files in the process of downloading */ return (TotalDownloaded < IncludedFiles.size()); } void ServerConfig::StartDownloads() { + if (isatty(0) && isatty(1) && isatty(2)) + printf("Downloading configuration "); + TotalDownloaded = 0; + FileErrors = 0; + /* Reads all local files into the IncludedFiles map, then initiates sockets for the remote ones */ for (std::map<std::string, std::istream*>::iterator x = IncludedFiles.begin(); x != IncludedFiles.end(); ++x) { @@ -1271,6 +1281,8 @@ void ServerConfig::StartDownloads() delete x->second; x->second = conf; } + else + FileErrors++; TotalDownloaded++; } |