Geen omschrijving

SimpleSniffer.pro 653B

12345678910111213141516171819202122232425262728293031323334353637
  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2014-04-23T17:03:18
  4. #
  5. #-------------------------------------------------
  6. QT += core gui network
  7. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  8. TARGET = SimpleSniffer
  9. TEMPLATE = app
  10. SOURCES += main.cpp\
  11. mainwindow.cpp \
  12. sniffer.cpp \
  13. ethernet_packet.cpp \
  14. ip_packet.cpp \
  15. imagepacket.cpp
  16. HEADERS += mainwindow.h \
  17. ethernet_hdr.h \
  18. ip_hdr.h \
  19. tcp_hdr.h \
  20. sniffer.h \
  21. ethernet_packet.h \
  22. ip_packet.h \
  23. udp_hdr.h \
  24. imagepacket.h
  25. LIBS += -lpcap
  26. FORMS += mainwindow.ui
  27. RESOURCES += \
  28. images.qrc