summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/ctables.h1
-rw-r--r--include/inspircd.h1
-rw-r--r--src/inspircd.cpp65
3 files changed, 32 insertions, 35 deletions
diff --git a/include/ctables.h b/include/ctables.h
index a16f5732f..5926f3a2a 100644
--- a/include/ctables.h
+++ b/include/ctables.h
@@ -20,7 +20,6 @@
#include "inspircd_config.h"
#include "inspircd.h"
#include "base.h"
-#include "typedefs.h"
/** A structure that defines a command
*/
diff --git a/include/inspircd.h b/include/inspircd.h
index 807b6cbaf..1eece0532 100644
--- a/include/inspircd.h
+++ b/include/inspircd.h
@@ -42,7 +42,6 @@
#include "inspircd_util.h"
#include "users.h"
#include "channels.h"
-#include "typedefs.h"
// some misc defines
diff --git a/src/inspircd.cpp b/src/inspircd.cpp
index 60e0c11bd..4cab20c52 100644
--- a/src/inspircd.cpp
+++ b/src/inspircd.cpp
@@ -468,6 +468,38 @@ InspIRCd::InspIRCd(int argc, char** argv)
lowermap[(unsigned)']'] = '}';
lowermap[(unsigned)'\\'] = '|';
+
+ OpenLog(argc, argv);
+ Config->ClearStack();
+ Config->Read(true,NULL);
+ CheckRoot();
+ SetupCommandTable();
+ AddServerName(Config->ServerName);
+ CheckDie();
+ boundPortCount = BindPorts();
+
+ printf("\n");
+ startup_time = time(NULL);
+
+ if (!Config->nofork)
+ {
+ if (DaemonSeed() == ERROR)
+ {
+ printf("ERROR: could not go into daemon mode. Shutting down.\n");
+ Exit(ERROR);
+ }
+ }
+
+ /* Because of limitations in kqueue on freebsd, we must fork BEFORE we
+ * initialize the socket engine.
+ */
+ SE = new SocketEngine();
+
+ /* We must load the modules AFTER initializing the socket engine, now */
+ LoadAllModules();
+
+ printf("\nInspIRCd is now running!\n");
+
return;
}
@@ -1550,39 +1582,6 @@ int InspIRCd::Run()
sockaddr_in sock_us; // our port number
socklen_t uslen; // length of our port number
- /* Beta 7 moved all this stuff out of the main function
- * into smaller sub-functions, much tidier -- Brain
- */
- OpenLog(argv, argc);
- Config->ClearStack();
- Config->Read(true,NULL);
- CheckRoot();
- SetupCommandTable();
- AddServerName(Config->ServerName);
- CheckDie();
- boundPortCount = BindPorts();
-
- printf("\n");
- startup_time = time(NULL);
-
- if (!Config->nofork)
- {
- if (DaemonSeed() == ERROR)
- {
- printf("ERROR: could not go into daemon mode. Shutting down.\n");
- Exit(ERROR);
- }
- }
-
- /* Because of limitations in kqueue on freebsd, we must fork BEFORE we
- * initialize the socket engine.
- */
- SE = new SocketEngine();
-
- /* We must load the modules AFTER initializing the socket engine, now */
- LoadAllModules();
-
- printf("\nInspIRCd is now running!\n");
if (!Config->nofork)
{
freopen("/dev/null","w",stdout);