https://github.com/sbilly/opendpi
Automatically exported from code.google.com/p/opendpi
https://github.com/sbilly/opendpi
Last synced: about 1 year ago
JSON representation
Automatically exported from code.google.com/p/opendpi
- Host: GitHub
- URL: https://github.com/sbilly/opendpi
- Owner: sbilly
- License: lgpl-3.0
- Created: 2016-02-05T03:19:01.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-02-05T03:22:09.000Z (over 10 years ago)
- Last Synced: 2025-04-08T14:42:53.394Z (over 1 year ago)
- Language: C
- Size: 236 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- Changelog: ChangeLog
- License: COPYING
Awesome Lists containing this project
README
README for OpenDPI
==================
OpenDPI is a software component for traffic classification based on deep packet inspection.
Visit http://opendpi.org/ or http://code.google.com/p/opendpi/ for more information.
Building OpenDPI
================
OpenDPI is built using autotools and a gnu compatible C compiler like gcc.
To build the OpenDPI_demo application an installation of libpcap and the libpcap developer files are required.
Building an OpenDPI release from the command line:
$ tar xvfz opendpi-1.1.0.tar.gz
$ cd opendpi-1.1.0
$ ./configure
$ make
$ su (if necessary for the next line)
$ make install
Building OpenDPI from SVN (First Time):
$ svn checkout http://opendpi.googlecode.com/svn/trunk/ opendpi
$ cd opendpi
$ ./autogen.sh
$ make
$ su (if necessary for the next line)
$ make install
Building OpenDPI from SVN (Updating):
$ cd opendpi
$ make clean
$ svn up
$ make
$ su (if necessary for the next line)
$ make install