summaryrefslogtreecommitdiff
path: root/ircserver.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--ircserver.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/ircserver.cpp b/ircserver.cpp
new file mode 100644
index 0000000..94456dc
--- /dev/null
+++ b/ircserver.cpp
@@ -0,0 +1,9 @@
+#include "core.h"
+
+IRCServer::IRCServer(Bouncer *_bouncer) : Server(_bouncer) {
+ bouncer = _bouncer;
+}
+
+void IRCServer::connect() {
+ Server::connect(config.hostname, config.port, config.useTls);
+}