2009-06-04 07:05:23 +02:00
|
|
|
/* Copyright (c) 2009, The Tor Project, Inc. */
|
|
|
|
/* See LICENSE for licensing information */
|
|
|
|
|
|
|
|
#ifndef _TOR_COMPAT_LIBEVENT_H
|
|
|
|
#define _TOR_COMPAT_LIBEVENT_H
|
|
|
|
|
|
|
|
#include "orconfig.h"
|
|
|
|
|
2009-06-04 09:16:26 +02:00
|
|
|
struct event;
|
|
|
|
struct event_base;
|
2009-07-31 17:11:45 +02:00
|
|
|
#ifdef USE_BUFFEREVENTS
|
|
|
|
struct bufferevent;
|
2011-08-24 23:09:56 +02:00
|
|
|
struct ev_token_bucket_cfg;
|
|
|
|
struct bufferevent_rate_limit_group;
|
2009-07-31 17:11:45 +02:00
|
|
|
#endif
|
2009-06-04 09:16:26 +02:00
|
|
|
|
2009-06-04 07:05:23 +02:00
|
|
|
#ifdef HAVE_EVENT2_EVENT_H
|
2009-06-04 09:16:26 +02:00
|
|
|
#include <event2/util.h>
|
2011-05-30 21:21:06 +02:00
|
|
|
#elif !defined(EVUTIL_SOCKET_DEFINED)
|
2011-05-23 06:17:48 +02:00
|
|
|
#define EVUTIL_SOCKET_DEFINED
|
2009-06-04 07:05:23 +02:00
|
|
|
#define evutil_socket_t int
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void configure_libevent_logging(void);
|
|
|
|
void suppress_libevent_log_msg(const char *msg);
|
|
|
|
|
|
|
|
#ifdef HAVE_EVENT2_EVENT_H
|
|
|
|
#define tor_event_new event_new
|
|
|
|
#define tor_evtimer_new evtimer_new
|
|
|
|
#define tor_evsignal_new evsignal_new
|
|
|
|
#define tor_event_free event_free
|
2010-02-19 17:19:33 +01:00
|
|
|
#define tor_evdns_add_server_port(sock, tcp, cb, data) \
|
|
|
|
evdns_add_server_port_with_base(tor_libevent_get_base(), \
|
|
|
|
(sock),(tcp),(cb),(data));
|
|
|
|
|
2009-06-04 07:05:23 +02:00
|
|
|
#else
|
|
|
|
struct event *tor_event_new(struct event_base * base, evutil_socket_t sock,
|
|
|
|
short what, void (*cb)(evutil_socket_t, short, void *), void *arg);
|
|
|
|
struct event *tor_evtimer_new(struct event_base * base,
|
|
|
|
void (*cb)(evutil_socket_t, short, void *), void *arg);
|
|
|
|
struct event *tor_evsignal_new(struct event_base * base, int sig,
|
|
|
|
void (*cb)(evutil_socket_t, short, void *), void *arg);
|
|
|
|
void tor_event_free(struct event *ev);
|
2010-02-19 17:19:33 +01:00
|
|
|
#define tor_evdns_add_server_port evdns_add_server_port
|
2009-06-04 07:05:23 +02:00
|
|
|
#endif
|
|
|
|
|
2010-06-25 21:31:46 +02:00
|
|
|
typedef struct periodic_timer_t periodic_timer_t;
|
|
|
|
|
|
|
|
periodic_timer_t *periodic_timer_new(struct event_base *base,
|
|
|
|
const struct timeval *tv,
|
|
|
|
void (*cb)(periodic_timer_t *timer, void *data),
|
|
|
|
void *data);
|
|
|
|
void periodic_timer_free(periodic_timer_t *);
|
|
|
|
|
2009-06-04 09:24:53 +02:00
|
|
|
#ifdef HAVE_EVENT_BASE_LOOPEXIT
|
|
|
|
#define tor_event_base_loopexit event_base_loopexit
|
|
|
|
#else
|
|
|
|
struct timeval;
|
|
|
|
int tor_event_base_loopexit(struct event_base *base, struct timeval *tv);
|
|
|
|
#endif
|
|
|
|
|
2010-09-28 20:01:45 +02:00
|
|
|
typedef struct tor_libevent_cfg {
|
|
|
|
int disable_iocp;
|
|
|
|
int num_cpus;
|
|
|
|
} tor_libevent_cfg;
|
|
|
|
|
|
|
|
void tor_libevent_initialize(tor_libevent_cfg *cfg);
|
2009-06-04 07:05:23 +02:00
|
|
|
struct event_base *tor_libevent_get_base(void);
|
|
|
|
const char *tor_libevent_get_method(void);
|
2009-06-04 09:16:26 +02:00
|
|
|
void tor_check_libevent_version(const char *m, int server,
|
|
|
|
const char **badness_out);
|
|
|
|
void tor_check_libevent_header_compatibility(void);
|
|
|
|
const char *tor_libevent_get_version_str(void);
|
2009-06-04 07:05:23 +02:00
|
|
|
|
2010-02-22 19:59:34 +01:00
|
|
|
#ifdef USE_BUFFEREVENTS
|
|
|
|
#define TOR_LIBEVENT_TICKS_PER_SECOND 3
|
|
|
|
const struct timeval *tor_libevent_get_one_tick_timeout(void);
|
2011-08-18 21:08:49 +02:00
|
|
|
int tor_libevent_using_iocp_bufferevents(void);
|
2011-08-24 23:09:56 +02:00
|
|
|
int tor_set_bufferevent_rate_limit(struct bufferevent *bev,
|
|
|
|
struct ev_token_bucket_cfg *cfg);
|
|
|
|
int tor_add_bufferevent_to_rate_limit_group(struct bufferevent *bev,
|
|
|
|
struct bufferevent_rate_limit_group *g);
|
2010-02-22 19:59:34 +01:00
|
|
|
#endif
|
|
|
|
|
2009-06-04 07:05:23 +02:00
|
|
|
#endif
|
2009-06-12 21:09:09 +02:00
|
|
|
|