1PCAP_TSTAMP_TYPE_VAL_TO_NAME(3PCAP) PCAP_TSTAMP_TYPE_VAL_TO_NAME(3PCAP)
2
3
4
6 pcap_tstamp_type_val_to_name, pcap_tstamp_type_val_to_description - get
7 a name or description for a time stamp type value
8
10 #include <pcap.h>
11
12 const char *pcap_tstamp_type_val_to_name(int tstamp_type);
13 const char *pcap_tstamp_type_val_to_description(int tstamp_type);
14
16 pcap_tstamp_type_val_to_name() translates a time stamp type value to
17 the corresponding time stamp type name. NULL is returned on failure.
18
19 pcap_tstamp_type_val_to_description() translates a time stamp type
20 value to a short description of that time stamp type. NULL is returned
21 on failure.
22
24 These functions became available in libpcap release 1.2.1.
25
27 pcap(3PCAP), pcap_tstamp_type_name_to_val(3PCAP)
28
29
30
31 22 August 20P1C8AP_TSTAMP_TYPE_VAL_TO_NAME(3PCAP)