diff options
author | Toni <matzeton@googlemail.com> | 2022-08-08 19:04:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-08 19:04:20 +0200 |
commit | 2e25c36396654cade3919dc4df36da2072096bb1 (patch) | |
tree | 6084e87015382a703fcd8b5536511d9d0728ad3e /.github/workflows | |
parent | 523360001e4c9e64d875febd9f024daa2691c31a (diff) |
Add TiVoConnect dissector. Fixes #1697. (#1699)
* added static assert if supported, to complain if the flow struct changes
Signed-off-by: lns <matzeton@googlemail.com>
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0afdfadb9..c688fa004 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -388,6 +388,10 @@ jobs: make all make -C example ndpiSimpleIntegration make -C rrdtool + - name: Print nDPI long help + if: startsWith(matrix.arch, 'x86_64') && !startsWith(matrix.os, 'windows') + run: | + ./example/ndpiReader -H - name: Install nDPI if: startsWith(matrix.arch, 'x86_64') && !startsWith(matrix.os, 'windows') run: | |