aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/network_instruments.c
AgeCommit message (Collapse)AuthorFilesLines
2003-11-25"file_seek()" sets "*err" - there's no need to set it ourselves. ItGuy Harris1-15/+7
returns -1 on errors, so just check for that. svn path=/trunk/; revision=9078
2003-11-06From Scott Emberley: support for writing Network Instruments ObserverGuy Harris1-19/+172
files. svn path=/trunk/; revision=8900
2003-11-01The time in Observer files is in nanoseconds since midnight, January 1,Guy Harris1-14/+45
2000, 00:00:00 *local* time. The amount to add to that is just the UNIX time stamp value for that point in time; get it with "mktime()". svn path=/trunk/; revision=8854
2003-10-31Temporarily get rid of the "struct tm" in "struct observer_time", andGuy Harris1-1/+5
get rid of the reference to its "tm_gmtoff" member - there are platforms on which Ethereal runs that don't have "tm_gmtoff" in "struct tm". If the time stamp in the packets is nanoseconds since midnight 2001-01-01 *local* time, we'd need to compute the offset between that and midnight 2000-01-01 GMT, and adjust the time with that. svn path=/trunk/; revision=8842
2003-10-31From Scott Emberley: support for reading Network Instruments version 9Guy Harris1-0/+290
capture files. svn path=/trunk/; revision=8840