commit 1033e14a693e8d80341428b592779fe145eb3152
parent c910610701475d6fcb13284c318fe5c10fc4bdea
Author: David Goulet <dgoulet@torproject.org>
Date: Fri, 15 Sep 2017 09:06:11 -0400
sched: Define SCHEDULER_KIST_PRIVATE for more encapsulation
Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat:
4 files changed, 8 insertions(+), 0 deletions(-)
diff --git a/src/or/scheduler.c b/src/or/scheduler.c
@@ -6,6 +6,7 @@
#include "compat_libevent.h"
#define SCHEDULER_PRIVATE_
+#define SCHEDULER_KIST_PRIVATE
#include "scheduler.h"
#include <event2/event.h>
diff --git a/src/or/scheduler.h b/src/or/scheduler.h
@@ -155,6 +155,8 @@ void scheduler_touch_channel(channel_t *chan);
* Defined in scheduler_kist.c
*********************************/
+#ifdef SCHEDULER_KIST_PRIVATE
+
/* Socke table entry which holds information of a channel's socket and kernel
* TCP information. Only used by KIST. */
typedef struct socket_table_ent_s {
@@ -188,6 +190,8 @@ int32_t kist_scheduler_run_interval(const networkstatus_t *ns);
extern int32_t sched_run_interval;
#endif /* TOR_UNIT_TESTS */
+#endif /* SCHEDULER_KIST_PRIVATE */
+
/*********************************
* Defined in scheduler_vanilla.c
*********************************/
diff --git a/src/or/scheduler_kist.c b/src/or/scheduler_kist.c
@@ -1,6 +1,8 @@
/* Copyright (c) 2017, The Tor Project, Inc. */
/* See LICENSE for licensing information */
+#define SCHEDULER_KIST_PRIVATE
+
#include <event2/event.h>
#include <netinet/tcp.h>
diff --git a/src/test/test_scheduler.c b/src/test/test_scheduler.c
@@ -6,6 +6,7 @@
#include <math.h>
#include <event2/event.h>
+#define SCHEDULER_KIST_PRIVATE
#define TOR_CHANNEL_INTERNAL_
#define CHANNEL_PRIVATE_
#include "or.h"