diff options
Diffstat (limited to 'runtime/syslogd-types.h')
-rw-r--r-- | runtime/syslogd-types.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/runtime/syslogd-types.h b/runtime/syslogd-types.h index 6947a11..4b5d135 100644 --- a/runtime/syslogd-types.h +++ b/runtime/syslogd-types.h @@ -106,6 +106,17 @@ struct syslogTime { }; typedef struct syslogTime syslogTime_t; +struct tzinfo { + char *id; + char offsMode; + int8_t offsHour; + int8_t offsMin; +}; +typedef struct tzinfo tzinfo_t; + +typedef enum { ACT_STRING_PASSING = 0, ACT_ARRAY_PASSING = 1, ACT_MSG_PASSING = 2, + ACT_JSON_PASSING = 3} paramPassing_t; + #endif /* #ifndef SYSLOGD_TYPES_INCLUDED */ /* vi:set ai: */ |