#include <csignal>
#include <cerrno>
#include <cstdio>
+#include <cstdlib> // srandom, exit
#include <fstream>
#include <vector>
#include <set>
#include "stg/common.h"
#include "stg/plugin.h"
#include "stg/logger.h"
-#include "stg/script_executer.h"
+#include "stg/scriptexecuter.h"
#include "stg/conffiles.h"
#include "stg/version.h"
#include "stg/pinger.h"
tariffs = new TARIFFS_IMPL(dataStore);
admins = new ADMINS_IMPL(dataStore);
users = new USERS_IMPL(settings, dataStore, tariffs, admins->GetSysAdmin());
-traffCnt = new TRAFFCOUNTER_IMPL(users, tariffs, settings->GetRulesFileName());
+traffCnt = new TRAFFCOUNTER_IMPL(users, settings->GetRulesFileName());
traffCnt->SetMonitorDir(settings->GetMonitorDir());
modSettings = settings->GetModulesSettings();
*
* (c) man 2 nice
*/
-errno = 0;
+/*errno = 0;
if (nice(-19) && errno) {
printfd(__FILE__, "nice failed: '%s'\n", strerror(errno));
WriteServLog("nice failed: '%s'", strerror(errno));
-}
+}*/
WriteServLog("Stg started successfully.");
WriteServLog("+++++++++++++++++++++++++++++++++++++++++++++");