-
Notifications
You must be signed in to change notification settings - Fork 676
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for timestamp related options (#1656) #1657
base: dev
Are you sure you want to change the base?
Add support for timestamp related options (#1656) #1657
Conversation
a06273f
to
2ead59f
Compare
Pcap++/src/PcapLiveDevice.cpp
Outdated
@@ -308,6 +340,34 @@ namespace pcpp | |||
} | |||
#endif | |||
|
|||
if (config.timestampProvider) | |||
{ | |||
ret = pcap_set_tstamp_type(pcap, timestampProviderMap(config.timestampProvider)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
According to libpcap docs we should first call pcap_list_tstamp_types
to figure out which type are possible for this device. I'm not sure what happens if we set a type that isn't supported...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@seladb the behavior is described here:
https://www.tcpdump.org/manpages/libpcap-1.10.5/pcap_set_tstamp_type.3pcap.html
if I read it correctly, this means that:
- the error will be printed
- the default timestamp type will be used.
Let me know if you prefer to add the check and e.g. throw an exception if the timestamp is not supported
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @vcomito-apexai ! I think it's ok to log an error
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
added @seladb
2ead59f
to
2b27626
Compare
It seems that clang-tidy finds issues unrelated to this PR https://github.com/seladb/PcapPlusPlus/pull/1657/checks How may I address those? In a separate PR? |
2b27626
to
be0c2a8
Compare
be0c2a8
to
01957ac
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## dev #1657 +/- ##
==========================================
- Coverage 83.16% 83.08% -0.09%
==========================================
Files 277 277
Lines 48193 48263 +70
Branches 9966 10222 +256
==========================================
+ Hits 40080 40097 +17
- Misses 7234 7267 +33
- Partials 879 899 +20
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
ah, appearently they are fixed after rebase 👌 |
As described by #1656
@seladb would it be possible to enable the CI?