first chatcleaner steps (simple badword and textflood check works on port 7777)

This commit is contained in:
doitux
2009-07-18 20:39:31 +00:00
parent 33a3f2f6d4
commit 196d9bd27c
10 changed files with 266 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
#include <QtCore/QCoreApplication>
#include "cleanerserver.h"
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
CleanerServer server;
qsrand(QTime(0,0,0).secsTo(QTime::currentTime()));
return a.exec();
}