diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-08-02 13:26:10 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-08-02 13:33:08 -0400 |
commit | 88a7a027286046b1f9af3d495c1081a7f503efc5 (patch) | |
tree | 67f3ca07641d63ad7c5ab27915381fa8aa54d382 /src/common | |
parent | ca67dd83674583a07429df283444ed8d77ae8250 (diff) | |
download | tor-88a7a027286046b1f9af3d495c1081a7f503efc5.tar.gz tor-88a7a027286046b1f9af3d495c1081a7f503efc5.zip |
Bufferevent removal: remove more bufferevent-only options
(All this IOCP stuff was bufferevent-only.)
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/compat_libevent.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/common/compat_libevent.h b/src/common/compat_libevent.h index d9ccf1aabf..33da4fe782 100644 --- a/src/common/compat_libevent.h +++ b/src/common/compat_libevent.h @@ -34,8 +34,6 @@ void periodic_timer_free(periodic_timer_t *); /** Defines a configuration for using libevent with Tor: passed as an argument * to tor_libevent_initialize() to describe how we want to set up. */ typedef struct tor_libevent_cfg { - /** Flag: if true, disable IOCP (assuming that it could be enabled). */ - int disable_iocp; /** How many CPUs should we use (relevant only with IOCP). */ int num_cpus; /** How many milliseconds should we allow between updating bandwidth limits? |