@@ -102,27 +102,27 @@ namespace pcpp
102
102
PCPP_LOG_ERROR (" Windows doesn't support timestampPrecision option" );
103
103
}
104
104
#else
105
- static int timestampProviderMap (const PcapLiveDevice::TimestampProvider timestampProvider)
105
+ static int getPcapTimestampProvider (const PcapLiveDevice::TimestampProvider timestampProvider)
106
106
{
107
107
switch (timestampProvider)
108
108
{
109
109
case PcapLiveDevice::TimestampProvider::Host:
110
110
return PCAP_TSTAMP_HOST;
111
- case PcapLiveDevice::TimestampProvider::HostLowPrec :
111
+ case PcapLiveDevice::TimestampProvider::HostLowPrecision :
112
112
return PCAP_TSTAMP_HOST_LOWPREC;
113
- case PcapLiveDevice::TimestampProvider::HostHighPrec :
113
+ case PcapLiveDevice::TimestampProvider::HostHighPrecision :
114
114
return PCAP_TSTAMP_HOST_HIPREC;
115
115
case PcapLiveDevice::TimestampProvider::Adapter:
116
116
return PCAP_TSTAMP_ADAPTER;
117
117
case PcapLiveDevice::TimestampProvider::AdapterUnsynced:
118
118
return PCAP_TSTAMP_ADAPTER_UNSYNCED;
119
- case PcapLiveDevice::TimestampProvider::HostHighPrecUnsynced :
119
+ case PcapLiveDevice::TimestampProvider::HostHighPrecisionUnsynced :
120
120
return PCAP_TSTAMP_HOST_HIPREC_UNSYNCED;
121
121
}
122
122
return PCAP_TSTAMP_HOST;
123
123
}
124
124
125
- static int timestampPrecisionMap (const PcapLiveDevice::TimestampPrecision timestampPrecision)
125
+ static int getPcapPrecision (const PcapLiveDevice::TimestampPrecision timestampPrecision)
126
126
{
127
127
switch (timestampPrecision)
128
128
{
@@ -137,7 +137,8 @@ namespace pcpp
137
137
static bool isTimestampProviderSupportedByDevice (pcap_t * pcap,
138
138
const PcapLiveDevice::TimestampProvider timestampProvider)
139
139
{
140
- const auto tstampType = timestampProviderMap (timestampProvider);
140
+ # ifdef PCAP_AVAILABLE_1_2
141
+ const auto tstampType = getPcapTimestampProvider (timestampProvider);
141
142
142
143
// Use unique_ptr with a custom deleter directly
143
144
std::unique_ptr<int [], void (*)(int *)> supportedTstampTypes (nullptr , [](int * ptr) {
@@ -151,8 +152,8 @@ namespace pcpp
151
152
152
153
if (numSupportedTstampTypes < 0 )
153
154
{
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) << " ' " ) ;
156
157
return false ;
157
158
}
158
159
@@ -169,6 +170,10 @@ namespace pcpp
169
170
return true ;
170
171
}
171
172
}
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
172
177
173
178
return false ;
174
179
}
@@ -177,7 +182,7 @@ namespace pcpp
177
182
{
178
183
if (isTimestampProviderSupportedByDevice (pcap, timestampProvider))
179
184
{
180
- const int ret = pcap_set_tstamp_type (pcap, timestampProviderMap (timestampProvider));
185
+ const int ret = pcap_set_tstamp_type (pcap, getPcapTimestampProvider (timestampProvider));
181
186
if (ret == 0 )
182
187
{
183
188
PCPP_LOG_DEBUG (" Timestamp provider was set" );
@@ -196,7 +201,7 @@ namespace pcpp
196
201
197
202
static void setTimestampPrecision (pcap_t * pcap, const PcapLiveDevice::TimestampPrecision timestampPrecision)
198
203
{
199
- const int ret = pcap_set_tstamp_precision (pcap, timestampPrecisionMap (timestampPrecision));
204
+ const int ret = pcap_set_tstamp_precision (pcap, getPcapPrecision (timestampPrecision));
200
205
if (ret == 0 )
201
206
{
202
207
PCPP_LOG_DEBUG (" Timestamp precision was set" );
0 commit comments