diff options
-rw-r--r-- | src/libutil/util.c | 8 | ||||
-rw-r--r-- | src/libutil/util.h | 5 |
2 files changed, 13 insertions, 0 deletions
diff --git a/src/libutil/util.c b/src/libutil/util.c index 943c37b08..b537643ca 100644 --- a/src/libutil/util.c +++ b/src/libutil/util.c @@ -1963,3 +1963,11 @@ rspamd_time_jitter (gdouble in, gdouble jitter) return in + jitter * res; } + +#if !defined(LIBEVENT_VERSION_NUMBER) || LIBEVENT_VERSION_NUMBER < 0x02000000UL +struct event_base * +event_get_base (struct event *ev) +{ + return ev->ev_base; +} +#endif diff --git a/src/libutil/util.h b/src/libutil/util.h index 0903c23e5..536caed2c 100644 --- a/src/libutil/util.h +++ b/src/libutil/util.h @@ -396,4 +396,9 @@ guint64 rspamd_hash_seed (void); */ gdouble rspamd_time_jitter (gdouble in, gdouble jitter); +/* Special case for ancient libevent */ +#if !defined(LIBEVENT_VERSION_NUMBER) || LIBEVENT_VERSION_NUMBER < 0x02000000UL +struct event_base * event_get_base (struct event *ev); +#endif + #endif |