Marc Suñé

Results 9 issues of Marc Suñé

As a user, I would like a to have a variant of `cdada_map_t` that is equivalent to [`std::unordered_map`](https://en.cppreference.com/w/cpp/container/unordered_map), which has the following differences: | | map | unordered_map | |-----------------|-----------------...

feature

Backport fix to 4.1.X "fixed zmq assertion in signaler.cpp under ubuntu #1584"

Prior to this commit executing any target that invoked `$(CILIUM_CLI)` silently failed (as of `$?`==`0`), e.g. `kind-install-cilium`. This commit adds `check_deps` target in the main Makefile, and adds it as...

release-note/misc
kind/community-contribution

Currently `actions/upload-artifact` is used to pass cached builders between [stage1](https://github.com/pmacct/pmacct/blob/0b4f1603068e86156e5fc8af08a52e750b8af0ef/.github/workflows/ci.yaml#L43-L49) and [stage2](https://github.com/pmacct/pmacct/blob/0b4f1603068e86156e5fc8af08a52e750b8af0ef/.github/workflows/ci.yaml#L166-L169) of the CI. Pipeline times would be shorter using [Github Cache Action](https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#using-the-cache-action). This is fairly low-prio, as the...

enhancement

This commit fixes the Python types of a number of fields defined in Netflowv9/10 for the following pre-defined fields (mostly the ones in RFC3954 https://datatracker.ietf.org/doc/html/rfc3954). It appears that in absence...

needs rework/cleanup

### Brief description Hello, While working on some testing code for [pmacct](https://github.com/pmacct/pmacct/) using scapy I found what appears to be a bug serializing v9 netflow flow records. The TL;DR `IN_BYTES`...

bug

This patch series: * Adds a Scapy self-test to make sure the testing framework doesn't regress. * Fixes two bugs in `parser.py`: * If a `BUF_DECL()` in different scopes was...

dont-merge/needs-release-note-label

This commit: * Adds a test/ folder. This folder contains a pytest infrastructure that can run tests using `make check` * A simple `nfacctd` test which: - Starts nfacctd with...

`nfacctd` with the following configuration: ``` daemonize: false !Flowlogs nfacctd_ip: 0.0.0.0 nfacctd_port: 2055 !print plugin plugins: print print_output: json print_refresh_time: 1 aggregate: src_host, dst_host, src_port, dst_port, proto print_output_file: logs/simple_collect_output.json ```...

enhancement