1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
/*
* netsniff-ng - the packet sniffing beast
* Copyright 2009, 2010 Daniel Borkmann.
* Subject to the GPL, version 2.
*/
extern int set_sockopt_hwtimestamp(int sock, const char *dev);
#ifdef __WITH_HARDWARE_TIMESTAMPING
#include <string.h>
#include <sys/ioctl.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <linux/sockios.h>
#include <linux/net_tstamp.h>
#include <linux/net_tstamp.h>
#include <linux/if_packet.h>
#include <linux/if.h>
#include "xutils.h"
int set_sockopt_hwtimestamp(int sock, const char *dev)
{
int timesource, ret;
struct hwtstamp_config hwconfig;
struct ifreq ifr;
if (!strncmp("any", dev, strlen("any")))
return -1;
memset(&hwconfig, 0, sizeof(hwconfig));
hwconfig.tx_type = HWTSTAMP_TX_OFF;
hwconfig.rx_filter = HWTSTAMP_FILTER_ALL;
memset(&ifr, 0, sizeof(ifr));
strlcpy(ifr.ifr_name, dev, sizeof(ifr.ifr_name));
ifr.ifr_data = &hwconfig;
ret = ioctl(sock, SIOCSHWTSTAMP, &ifr);
if (ret < 0)
return -1;
timesource = SOF_TIMESTAMPING_RAW_HARDWARE;
return setsockopt(sock, SOL_PACKET, PACKET_TIMESTAMP, ×ource,
sizeof(timesource));
}
#else
int set_sockopt_hwtimestamp(int sock, const char *dev)
{
return -1;
}
#endif
|