Skip to content

Commit

Permalink
Merge pull request #22 from welbouri/convert_direction
Browse files Browse the repository at this point in the history
set flags in write_packet
  • Loading branch information
kayoub5 authored Jan 1, 2025
2 parents 6491ab1 + 9e95a0a commit 0e7191e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion cmake/pcapng_exporter.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ include(FetchContent)
FetchContent_Declare(
pcapng_exporter
GIT_REPOSITORY https://github.com/Technica-Engineering/Technica.Traces.Pcapng.Exporter.git
GIT_TAG a923bf7
GIT_TAG 1bb6d5b
)
FetchContent_MakeAvailable(pcapng_exporter)
1 change: 1 addition & 0 deletions src/app.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,7 @@ int write_packet(
header.timestamp.tv_nsec = ts % NANOS_PER_SEC;
header.captured_length = length;
header.original_length = length;
header.flags = flags;

exporter.write_packet(channel_id, interface, header, data);

Expand Down

0 comments on commit 0e7191e

Please sign in to comment.