Find a file
2016-11-13 18:22:03 +01:00
doc Updated quickstart guide 2016-10-15 11:41:40 +02:00
example ndpi_util: fix ‘type/ip_offset’ may be used uninitialized in this function [-Werror=maybe-uninitialized] 2016-11-13 18:22:03 +01:00
m4 Initial import from SVN 2015-04-19 07:25:59 +02:00
packages Update homebrew 1.8 formula 2016-05-28 11:00:32 +02:00
src bittorrent: fix variable ‘peer_id’ set but not used [-Werror=unused-but-set-variable] 2016-11-13 18:22:03 +01:00
tests update test results after new services added 2016-11-12 16:38:37 +01:00
.gitignore more ignores 2016-10-04 15:42:20 +02:00
.travis.yml Improved testing application 2015-05-22 09:03:01 +02:00
autogen.sh Call configure with args from autogen 2016-04-01 17:18:23 +03:00
ChangeLog Initial import from SVN 2015-04-19 07:25:59 +02:00
configure.ac Allowed to run tests by 'make check' 2016-08-13 13:35:14 +03:00
COPYING Initial import from SVN 2015-04-19 07:25:59 +02:00
INSTALL Initial import from SVN 2015-04-19 07:25:59 +02:00
lib Initial import from SVN 2015-04-19 07:25:59 +02:00
libndpi.pc.in Initial import from SVN 2015-04-19 07:25:59 +02:00
libndpi.sym Added new functions defined in #279 for exporiting them in shared libs 2016-10-23 13:00:41 +02:00
Makefile.am Allowed to run tests by 'make check' 2016-08-13 13:35:14 +03:00
README.md Fix README.md 2016-08-20 11:05:10 +08:00
README.nDPI Added readme containing package prerequisites 2015-05-05 11:35:55 +02:00
README.protocols Fix typo 2016-05-29 10:09:07 +02:00

ntop ntop

nDPI

Build Status

What is nDPI ?

nDPI is an open source LGPLv3 library for deep-packet inspection. Based on OpenDPI it includes ntop extensions. We have tried to push them into the OpenDPI source tree but nobody answered emails so we have decided to create our own source tree

How To Compile nDPI

In order to compile this library do

  • ./autogen.sh
  • ./configure
  • make

To run tests do additionally:

  • make check

Please note that the pre-requisites for compilation include:

  • GNU tools (autogen, automake, autoconf, libtool)
  • GNU C compiler (gcc)

How To Add A New Protocol Dissector

The entire procedure of adding new protocols in detail:

  1. Add new protocol together with its unique ID to: src/include/ndpi_protocol_ids.h
  2. Create a new protocol in: src/lib/protocols/
  3. Variables to be kept for the duration of the entire flow (as state variables) needs to be placed in: /include/ndpi_structs.h in ndpi_flow_tcp_struct (for TCP only), ndpi_flow_udp_struct (for UDP only), or ndpi_flow_struct (for both).
  4. Add a new entry for the search function for the new protocol in: src/include/ndpi_protocols.h
  5. Choose (do not change anything) a selection bitmask from: src/include/ndpi_define.h
  6. Add a new entry in ndpi_set_protocol_detection_bitmask2 in: src/lib/ndpi_main.c
  7. Set protocol default ports in ndpi_init_protocol_defaults in: src/lib/ndpi_main.c
  8. Add the new protocol file to: src/lib/Makefile.am
  9. ./autogen.sh
  10. ./configure
  11. make
  12. make check

Creating A Source File Tar Ball

If you want to distribute a source tar file of nDPI do:

  • make dist

To ensure that a tar file includes all necessary files and to run tests on distribution do:

  • make distcheck