Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions include/fluent-bit/flb_time.h
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,10 @@ int flb_time_msgpack_to_time(struct flb_time *time, msgpack_object *obj);
int flb_time_pop_from_mpack(struct flb_time *time, mpack_reader_t *reader);
int flb_time_pop_from_msgpack(struct flb_time *time, msgpack_unpacked *upk,
msgpack_object **map);
const char *flb_time_windows_zone_to_iana(const char *windows_zone);
const char *flb_time_iana_zone_to_windows(const char *iana_zone);
int flb_time_windows_zone_to_utc_offset(const char *windows_zone, long *offset);
int flb_time_iana_zone_to_utc_offset(const char *iana_zone, long *offset);
long flb_time_tz_offset_to_second();

#endif /* FLB_TIME_H */
2 changes: 2 additions & 0 deletions src/flb_time.c
Original file line number Diff line number Diff line change
Expand Up @@ -442,3 +442,5 @@ long flb_time_tz_offset_to_second()

return diff;
}

#include "flb_time_tz.c"
Loading
Loading