Results 1 to 2 of 2

Thread: warning: NOD32 protected [MSAFD Tcpip [TCP/IP]]

  1. #1
    Join Date
    Jun 2007
    Posts
    4
    Qt products
    Qt4
    Platforms
    MacOS X Windows

    Default 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)

    Qt Code:
    1. static bool createConnection()
    2. {
    3. QSqlDatabase db = QSqlDatabase::addDatabase("QMYSQL");
    4. db.setHostName("dbserver");
    5. db.setDatabaseName("db");
    6. db.setUserName("root");
    7. db.setPassword("");
    8.  
    9. bool ok = db.open();
    10.  
    11. if (!db.open()) {
    12. QMessageBox::critical(0, qApp->tr("Cannot open database"),
    13. qApp->tr("Unable to establish a database connection.\n\n"
    14. "Click Cancel to exit."), QMessageBox::Cancel);
    15. return false;
    16. }
    17.  
    18. return true;
    19. }
    To copy to clipboard, switch view to plain text mode 

    When db.open() is called Eclipse shows me this in the console window:

    Qt Code:
    1. warning: NOD32 protected [MSAFD Tcpip [TCP/IP]]
    2. warning: NOD32 protected [MSAFD Tcpip [UDP/IP]]
    3. warning: NOD32 protected [MSAFD Tcpip [RAW/IP]]
    4. warning: NOD32 protected [RSVP UDP Service Provider]
    5. warning: NOD32 protected [RSVP TCP Service Provider]
    To copy to clipboard, switch view to plain text mode 

    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.

  2. #2
    Join Date
    Jun 2007
    Posts
    4
    Qt products
    Qt4
    Platforms
    MacOS X Windows

    Default 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

Similar Threads

  1. Problem at time compilation in traslation of language
    By thomasjoy in forum Qt Programming
    Replies: 3
    Last Post: 22nd May 2007, 14:18
  2. problem with linking
    By mickey in forum Qt Programming
    Replies: 49
    Last Post: 12th August 2006, 21:41
  3. how to corss compile for windows in Linux
    By safknw in forum Qt Programming
    Replies: 24
    Last Post: 13th May 2006, 05:23

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Qt is a trademark of The Qt Company.