Skip to content

Commit 20ed1d7

Browse files
Address review changes (seladb#1656)
1 parent 0a22d2a commit 20ed1d7

File tree

5 files changed

+30
-31
lines changed

5 files changed

+30
-31
lines changed

Common++/src/SystemUtils.cpp

+2-6
Original file line numberDiff line numberDiff line change
@@ -200,9 +200,7 @@ namespace pcpp
200200

201201
bool directoryExists(const std::string& dirPath)
202202
{
203-
struct stat info
204-
{
205-
};
203+
struct stat info{};
206204

207205
if (stat(dirPath.c_str(), &info) != 0)
208206
{
@@ -370,9 +368,7 @@ namespace pcpp
370368
#if defined(_WIN32)
371369
SetConsoleCtrlHandler((PHANDLER_ROUTINE)handlerRoutine, TRUE);
372370
#else
373-
struct sigaction action
374-
{
375-
};
371+
struct sigaction action{};
376372
memset(&action, 0, sizeof(struct sigaction));
377373
action.sa_handler = handlerRoutine;
378374
sigemptyset(&action.sa_mask);

Packet++/src/DnsResourceData.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -204,8 +204,7 @@ namespace pcpp
204204
{
205205
if (m_DataLen == 0 || m_Data == nullptr)
206206
{
207-
PCPP_LOG_ERROR("Input data is null or illegal"
208-
<< "|m_DataLen:" << m_DataLen);
207+
PCPP_LOG_ERROR("Input data is null or illegal" << "|m_DataLen:" << m_DataLen);
209208
return false;
210209
}
211210

Packet++/src/VrrpLayer.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -479,8 +479,7 @@ namespace pcpp
479479
auto* ipLayer = m_Packet->getLayerOfType<pcpp::IPLayer>();
480480
if (ipLayer == nullptr)
481481
{
482-
PCPP_LOG_ERROR("Calculate checksum failed, for can not get IPLayer"
483-
<< "");
482+
PCPP_LOG_ERROR("Calculate checksum failed, for can not get IPLayer" << "");
484483
return 0;
485484
}
486485

Pcap++/header/PcapLiveDevice.h

+11-11
Original file line numberDiff line numberDiff line change
@@ -173,27 +173,27 @@ namespace pcpp
173173
/// (you can read more here: <https://www.tcpdump.org/manpages/pcap-tstamp.7.html>)
174174
enum class TimestampProvider
175175
{
176-
/** host-provided, unknown characteristics, default */
176+
/// host-provided, unknown characteristics, default
177177
Host = 0,
178-
/** host-provided, low precision, synced with the system clock */
179-
HostLowPrec,
180-
/** host-provided, high precision, synced with the system clock */
181-
HostHighPrec,
182-
/** device-provided, synced with the system clock */
178+
/// host-provided, low precision, synced with the system clock
179+
HostLowPrecision,
180+
/// host-provided, high precision, synced with the system clock
181+
HostHighPrecision,
182+
/// device-provided, synced with the system clock
183183
Adapter,
184-
/** device-provided, not synced with the system clock */
184+
/// device-provided, not synced with the system clock
185185
AdapterUnsynced,
186-
/** host-provided, high precision, not synced with the system clock */
187-
HostHighPrecUnsynced
186+
/// host-provided, high precision, not synced with the system clock
187+
HostHighPrecisionUnsynced
188188
};
189189

190190
/// Set the precision of timestamps associated to each captured packet
191191
/// (you can read more here: <https://www.tcpdump.org/manpages/pcap-tstamp.7.html>)
192192
enum class TimestampPrecision
193193
{
194-
/** use timestamps with microsecond precision, default */
194+
/// use timestamps with microsecond precision, default
195195
Microseconds = 0,
196-
/** use timestamps with nanosecond precision */
196+
/// use timestamps with nanosecond precision
197197
Nanoseconds,
198198
};
199199

Pcap++/src/PcapLiveDevice.cpp

+15-10
Original file line numberDiff line numberDiff line change
@@ -102,27 +102,27 @@ namespace pcpp
102102
PCPP_LOG_ERROR("Windows doesn't support timestampPrecision option");
103103
}
104104
#else
105-
static int timestampProviderMap(const PcapLiveDevice::TimestampProvider timestampProvider)
105+
static int getPcapTimestampProvider(const PcapLiveDevice::TimestampProvider timestampProvider)
106106
{
107107
switch (timestampProvider)
108108
{
109109
case PcapLiveDevice::TimestampProvider::Host:
110110
return PCAP_TSTAMP_HOST;
111-
case PcapLiveDevice::TimestampProvider::HostLowPrec:
111+
case PcapLiveDevice::TimestampProvider::HostLowPrecision:
112112
return PCAP_TSTAMP_HOST_LOWPREC;
113-
case PcapLiveDevice::TimestampProvider::HostHighPrec:
113+
case PcapLiveDevice::TimestampProvider::HostHighPrecision:
114114
return PCAP_TSTAMP_HOST_HIPREC;
115115
case PcapLiveDevice::TimestampProvider::Adapter:
116116
return PCAP_TSTAMP_ADAPTER;
117117
case PcapLiveDevice::TimestampProvider::AdapterUnsynced:
118118
return PCAP_TSTAMP_ADAPTER_UNSYNCED;
119-
case PcapLiveDevice::TimestampProvider::HostHighPrecUnsynced:
119+
case PcapLiveDevice::TimestampProvider::HostHighPrecisionUnsynced:
120120
return PCAP_TSTAMP_HOST_HIPREC_UNSYNCED;
121121
}
122122
return PCAP_TSTAMP_HOST;
123123
}
124124

125-
static int timestampPrecisionMap(const PcapLiveDevice::TimestampPrecision timestampPrecision)
125+
static int getPcapPrecision(const PcapLiveDevice::TimestampPrecision timestampPrecision)
126126
{
127127
switch (timestampPrecision)
128128
{
@@ -137,7 +137,8 @@ namespace pcpp
137137
static bool isTimestampProviderSupportedByDevice(pcap_t* pcap,
138138
const PcapLiveDevice::TimestampProvider timestampProvider)
139139
{
140-
const auto tstampType = timestampProviderMap(timestampProvider);
140+
# ifdef PCAP_AVAILABLE_1_2
141+
const auto tstampType = getPcapTimestampProvider(timestampProvider);
141142

142143
// Use unique_ptr with a custom deleter directly
143144
std::unique_ptr<int[], void (*)(int*)> supportedTstampTypes(nullptr, [](int* ptr) {
@@ -151,8 +152,8 @@ namespace pcpp
151152

152153
if (numSupportedTstampTypes < 0)
153154
{
154-
std::cerr << "Error retrieving timestamp types: " << pcap_geterr(pcap) << " - default Host will be used"
155-
<< std::endl;
155+
PCPP_LOG_ERROR("Error retrieving timestamp types - default 'Host' will be used, error message: "
156+
<< pcap_geterr(pcap) << "'");
156157
return false;
157158
}
158159

@@ -169,6 +170,10 @@ namespace pcpp
169170
return true;
170171
}
171172
}
173+
# else
174+
PCPP_LOG_ERROR("Error retrieving timestamp types - default 'Host' will be used. "
175+
<< "pcap_list_tstamp_types is available only from libpcap 1.2");
176+
# endif
172177

173178
return false;
174179
}
@@ -177,7 +182,7 @@ namespace pcpp
177182
{
178183
if (isTimestampProviderSupportedByDevice(pcap, timestampProvider))
179184
{
180-
const int ret = pcap_set_tstamp_type(pcap, timestampProviderMap(timestampProvider));
185+
const int ret = pcap_set_tstamp_type(pcap, getPcapTimestampProvider(timestampProvider));
181186
if (ret == 0)
182187
{
183188
PCPP_LOG_DEBUG("Timestamp provider was set");
@@ -196,7 +201,7 @@ namespace pcpp
196201

197202
static void setTimestampPrecision(pcap_t* pcap, const PcapLiveDevice::TimestampPrecision timestampPrecision)
198203
{
199-
const int ret = pcap_set_tstamp_precision(pcap, timestampPrecisionMap(timestampPrecision));
204+
const int ret = pcap_set_tstamp_precision(pcap, getPcapPrecision(timestampPrecision));
200205
if (ret == 0)
201206
{
202207
PCPP_LOG_DEBUG("Timestamp precision was set");

0 commit comments

Comments
 (0)