diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2022-09-30 18:42:10 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2022-09-30 19:28:49 +0200 |
commit | 14f6b87551c1d03837f25755abbc8eb71d958e3e (patch) | |
tree | 6b7f1a3e481f61e726486c8d255b14e0d9e83f12 /scripts | |
parent | 74f71643da536c6798d077dc1d9b13d56a9afc5d (diff) |
Added nDPIsrvd-analysed to generate CSV files from analyse events.
* nDPIsrvd.h: iterate over JSON arrays
* nDPId: calculate l3 payload packet entropies for analysis
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/get-and-build-libndpi.sh | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/scripts/get-and-build-libndpi.sh b/scripts/get-and-build-libndpi.sh index 35a6bd8b1..a3c0c52b6 100755 --- a/scripts/get-and-build-libndpi.sh +++ b/scripts/get-and-build-libndpi.sh @@ -38,12 +38,14 @@ cd "$(dirname "${0}")/.." if [ -d ./.git ]; then git submodule update --init ./libnDPI else - printf '%s' '-----------------------------------' - printf 'WARNING: %s is supposed to be a GIT repository. But it is not.' "$(realpath $(dirname "${0}")/..)" - printf '%s' 'Can not clone libnDPI as GIT submodule.' - printf '%s' 'Falling back to Github direct download.' - printf 'URL: %s' "${GITHUB_FALLBACK_URL}" - printf '%s' '-----------------------------------' + set +x + printf '%s\n' '-----------------------------------' + printf 'WARNING: %s is supposed to be a GIT repository. But it is not.\n' "$(realpath $(dirname "${0}")/..)" + printf '%s\n' 'Can not clone libnDPI as GIT submodule.' + printf '%s\n' 'Falling back to Github direct download.' + printf 'URL: %s\n' "${GITHUB_FALLBACK_URL}" + printf '%s\n' '-----------------------------------' + set -x wget "${GITHUB_FALLBACK_URL}" -O ./libnDPI-github-dev.zip unzip ./libnDPI-github-dev.zip mv ./nDPI-dev ./libnDPI |