IPFIX records have a time stamp (and, according to RFC 5101, it's UNIX

time, i.e. seconds since January 1, 1970, 00:00:00 UTC).

svn path=/trunk/; revision=49370
This commit is contained in:
Guy Harris 2013-05-17 07:45:36 +00:00
parent 04d33bca00
commit 7634be8b27
1 changed files with 2 additions and 2 deletions

View File

@ -172,10 +172,10 @@ ipfix_read_and_process_message_header(FILE_T fh, struct wtap_pkthdr *phdr, int *
if (!ipfix_read_message_header(&msg_hdr, fh, err, err_info))
return FALSE;
phdr->presence_flags = 0;
phdr->presence_flags = WTAP_HAS_TS;
phdr->len = msg_hdr.message_length;
phdr->caplen = msg_hdr.message_length;
phdr->ts.secs = 0;
phdr->ts.secs = msg_hdr.export_time_secs;
phdr->ts.nsecs = 0;
return TRUE;