summaryrefslogtreecommitdiff
path: root/qt/RGBController/irc.cpp
diff options
context:
space:
mode:
authordaniel-Jones <daniel@danieljon.es>2017-07-06 19:04:48 +0930
committerdaniel-Jones <daniel@danieljon.es>2017-07-06 19:04:48 +0930
commitd3624454f67e3afc026d7e16546f5549e67f6102 (patch)
treee370fc7bd48c58f9d4a523d9eb7c554ebf6b461e /qt/RGBController/irc.cpp
parent9834782c287b1dc6df59a03e5992911d8fb70a83 (diff)
downloadRGB-Controller-d3624454f67e3afc026d7e16546f5549e67f6102.tar.gz
RGB-Controller-d3624454f67e3afc026d7e16546f5549e67f6102.zip
Added console based server that allows clients to connect and send commands to the microcontroller, does not require X to use, includes the IRC bot. Also included my beginning works on a c ncurses based client.
Diffstat (limited to 'qt/RGBController/irc.cpp')
-rw-r--r--qt/RGBController/irc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qt/RGBController/irc.cpp b/qt/RGBController/irc.cpp
index 3a2ac14..d87f0be 100644
--- a/qt/RGBController/irc.cpp
+++ b/qt/RGBController/irc.cpp
@@ -50,7 +50,7 @@ void irc::con()
socket->write(buf.toUtf8());
buf = "USER " + name + " 8 * :" + name + "\r\n";
socket->write(buf.toUtf8());
- pingcheck->start(60000);
+ pingcheck->start(300000);
}
void irc::discon()