Wireshark 4.5.0
The Wireshark network protocol analyzer
|
Go to the source code of this file.
Functions | |
const char * | time_string_parse (const char *time_text, int *year, int *month, int *day, bool *negative, int *hour, int *minute, long double *second) |
const char * | time_shift_all (capture_file *cf, const char *offset_text) |
const char * | time_shift_settime (capture_file *cf, unsigned packet_num, const char *time_text) |
const char * | time_shift_adjtime (capture_file *cf, unsigned packet1_num, const char *time1_text, unsigned packet2_num, const char *time2_text) |
const char * | time_shift_undo (capture_file *cf) |
Submitted by Edwin Groothuis wires.nosp@m.hark.nosp@m.@mave.nosp@m.tju..nosp@m.org
Wireshark - Network traffic analyzer By Gerald Combs geral.nosp@m.d@wi.nosp@m.resha.nosp@m.rk.o.nosp@m.rg Copyright 1998 Gerald Combs
SPDX-License-Identifier: GPL-2.0-or-later
const char * time_shift_all | ( | capture_file * | cf, |
const char * | offset_text | ||
) |
Shift all packets by an offset
cf | Capture file to shift |
offset_text | String representation of the offset. |
const char * time_string_parse | ( | const char * | time_text, |
int * | year, | ||
int * | month, | ||
int * | day, | ||
bool * | negative, | ||
int * | hour, | ||
int * | minute, | ||
long double * | second | ||
) |
Parse a time string and fill in each component.
If year, month, and day are non-NULL a full time format "[YYYY-MM-DD] hh:mm:ss[.decimals]" is allowed. Otherwise an offset format "[-][[hh:]mm:]ss[.decimals]" is allowed.
time_text | Time string |
year | Year. May be NULL |
month | Month. May be NULL |
day | Day. May be NULL. |
negative | Time offset is negative. May be NULL if year, month, and day are not NULL. |
hour | Hours. Must not be NULL. |
minute | Minutes. Must not be NULL. |
second | Seconds. Must not be NULL. |