warning: NOD32 protected [MSAFD Tcpip [TCP/IP]]
(Hi all)
I am using Qt 4.3.0 opensource for Win32 together with the Eclipse integration.
After using this guide: http://wiki.qtcentre.org/index.php?t...ws_using_MinGW
I managed to built Qt with mysql support.
Now when i try one of the numerous examples available (see below)
Code:
static bool createConnection()
{
db.setHostName("dbserver");
db.setDatabaseName("db");
db.setUserName("root");
db.setPassword("");
bool ok = db.open();
if (!db.open()) {
QMessageBox::critical(0, qApp
->tr
("Cannot open database"),
qApp->tr("Unable to establish a database connection.\n\n"
return false;
}
return true;
}
When db.open() is called Eclipse shows me this in the console window:
Code:
warning: NOD32 protected [MSAFD Tcpip [TCP/IP]]
warning: NOD32 protected [MSAFD Tcpip [UDP/IP]]
warning: NOD32 protected [MSAFD Tcpip [RAW/IP]]
warning: NOD32 protected [RSVP UDP Service Provider]
warning: NOD32 protected [RSVP TCP Service Provider]
Anyone aware of any issues using NOD32 antivirus in conjunction with Qt4? Or antivirus in general? Or perhaps did i forget some step(s) in the re-build process? Maybe its the Eclipse integration?
Lots of questions :) but this got me somewhat puzzled.
Re: warning: NOD32 protected [MSAFD Tcpip [TCP/IP]]
Hmm, it appears to be just some debugging info. I think.
Those warnings only appear when running my test app in debug mode. And i am able to connect and query a mysql db so it does work :)